Last active
October 18, 2016 18:47
-
-
Save codescribblr/b59491e2425b227b61d78083ab0fb83f to your computer and use it in GitHub Desktop.
Maintenance Landing Page
This file contains 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 xmlns="http://www.w3.org/1999/xhtml" dir="ltr"><head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>Maintenance Underway!</title> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style type="text/css"> | |
html{background:#f9f9f9} | |
body{background:#fff; color:#333; font-family:sans-serif; margin:2em auto; padding:1em 2em 2em; -webkit-border-radius:3px; border-radius:3px; border:1px solid #dfdfdf; max-width:750px; text-align:center;} | |
#error-page{margin-top:50px} | |
#error-page p{font-size:14px; line-height:1.5; margin:25px 0 20px} | |
#error-page code{font-family:Consolas,Monaco,monospace} | |
a{color:#21759B; text-decoration:none} | |
a:hover{color:#D54E21} | |
@media screen and (max-width:830px) { | |
#error-page{margin-left:10px; margin-right:10px;} | |
} | |
@media screen and (max-width: 420px) { | |
#error-page h1 { font-size: 18px; } | |
#error-page {margin-top:10px;margin-bottom:10px; } | |
#error-page p {margin-bottom:0px; margin-top:20px;} | |
} | |
</style> | |
</head> | |
<body id="error-page"> | |
<h1>Whoa, Captain! <br>There be construction on the horizon!</h1> | |
<p>PromotionPod Coupon Tool is currently undergoing some scheduled maintenance. Please check back again soon.</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment