This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/custom/web-placeholder/www/index.html
Didier 09a3007cc4
All checks were successful
update neo with compose files / update (push) Successful in 7s
this looks better
2023-04-30 00:40:01 +02:00

32 lines
No EOL
751 B
HTML

<!-- "We'll be right back" in the center of the screen -->
<!DOCTYPE html>
<html>
<head>
<title>Web Placeholder</title>
<style>
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
body {
display: flex;
align-items: center;
justify-content: center;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 24px;
color: #444;
}
@media (prefers-color-scheme: dark) {
body {
color: #ddd;
background-color: #333;
}
}
</style>
</head>
<body>
<div>We'll be right back.</div>
</body>
</html>