-
-
Save dkorpar/7b6dfa94f8a8e423fbcc712331d93003 to your computer and use it in GitHub Desktop.
Simple Maintenance Page
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> | |
<title>Site Maintenance</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
html, body { width:100%; height:100%; } | |
h1 { font-size: 42px; line-height: 1; } | |
body { box-sizing: border-box; font: 20px Helvetica, sans-serif; color: #333; padding: 30px; } | |
article { display: block; text-align: left; margin: 0 auto; max-width: 650px; } | |
a { color: #dc8100; text-decoration: none; } | |
a:hover { color: #333; text-decoration: none; } | |
p { font-size: 18px; line-height: 1.5; } | |
</style> | |
<article> | |
<h1>We’ll be back soon!</h1> | |
<div> | |
<p>Sorry for the inconvenience but we’re performing some maintenance at the moment. If you need to you can always <a href="mailto:[Email Address]">contact us</a>, otherwise we’ll be back online shortly!</p> | |
<p>— [Team Name]</p> | |
</div> | |
</article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment