Files
newsletter-hackernews/public/maintenance.html
2023-12-05 20:13:29 +01:00

46 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Maintenance</title>
<style>
body {
background: url('/background.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.card {
width: 100%;
max-width: 600px;
text-align: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
font-family: Arial, sans-serif;
background-color: rgba(255, 255, 255, 0.8);
}
.card h1 {
font-size: 2em;
color: #333;
}
.card p {
font-size: 1em;
color: #666;
}
</style>
</head>
<body>
<div class="card">
<h1>Maintenance</h1>
<p>We are doing stuff. Please come back later...</p>
</div>
</body>
</html>