Last active
May 22, 2017 09:53
-
-
Save uran1980/fe35c35ae64dbddaa20e7928d93c8e25 to your computer and use it in GitHub Desktop.
maintenance.html
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> | |
<head> | |
<meta content="text/html; charset=utf-8" http-equiv="Content-type"> | |
<title>Site on maintenance...</title> | |
<style media="screen" type="text/css"> | |
body | |
{ | |
background: #f1f1f1; | |
font-family: "HelveticaNeue", Helvetica, Arial, sans-serif; | |
text-rendering: optimizeLegibility; | |
margin: 0; | |
} | |
.container { margin: 50px auto 40px auto; width: 600px; text-align: center; } | |
a { color: #4183c4; text-decoration: none; } | |
a:visited { color: #4183c4 } | |
a:hover { text-decoration: none; } | |
h1 | |
{ | |
color: #758291; | |
letter-spacing: -1px; | |
line-height: 50px; | |
font-size: 50px; | |
font-weight: bold; | |
margin: 0; | |
text-shadow: 1px 1px 1px #FFFFFF; | |
text-transform: uppercase; | |
} | |
p { color: rgba(0, 0, 0, 0.5); margin: 20px 0 40px; } | |
ul { list-style: none; margin: 25px 0; padding: 0; } | |
li { display: table-cell; font-weight: bold; width: 1%; } | |
.divider { border-top: 1px solid #d5d5d5; border-bottom: 1px solid #fafafa;} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Site on maintenance</h1> | |
<p><strong>We are coming soon...</strong></p> | |
<p>Sorry for the inconvenience but we're performing some maintenance at the moment. Thank you for your patience.</p> | |
<div class="divider"></div> | |
<!-- <ul id="error-suggestions"> | |
<li><a href="/support">Contact Support</a></li> | |
<li><a href="/status">Status Site</a></li> | |
<li><a href="http://en.wikipedia.org/wiki/List_of_HTTP_status_codes" target="_blank">Status Codes</a></li> | |
</ul>--> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment