-
-
Save Amber-Williams/5b2e6b4049fa1b626f5da1e7cc005f13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
<title>Maintenance Mode</title> | |
<style> | |
* { | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
} | |
body { | |
height: 100vh; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
background: #0e0e10; | |
color: #f2f2f2; | |
font-family: Arial, sans-serif; | |
text-align: center; | |
flex-direction: column; | |
padding: 20px; | |
} | |
h1 { | |
font-size: 3rem; | |
margin-bottom: 1rem; | |
animation: fadeIn 1.5s ease-in-out; | |
} | |
p { | |
font-size: 1.2rem; | |
margin-bottom: 2rem; | |
max-width: 600px; | |
line-height: 1.5; | |
animation: fadeIn 2s ease-in-out; | |
} | |
#countdown { | |
font-size: 1.5rem; | |
font-weight: bold; | |
animation: fadeIn 2.5s ease-in-out; | |
} | |
@keyframes fadeIn { | |
from { opacity: 0; transform: translateY(10px); } | |
to { opacity: 1; transform: translateY(0); } | |
} | |
</style> | |
</head> | |
<body> | |
<h1>We'll Be Back Soon</h1> | |
<p>Our site is currently undergoing scheduled maintenance. Thank you for your patience. We'll be back online shortly!</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment