Skip to content

Instantly share code, notes, and snippets.

@dkorpar
Forked from pitch-gist/gist:2999707
Last active October 31, 2017 11:03
Show Gist options
  • Save dkorpar/7b6dfa94f8a8e423fbcc712331d93003 to your computer and use it in GitHub Desktop.
Save dkorpar/7b6dfa94f8a8e423fbcc712331d93003 to your computer and use it in GitHub Desktop.
Simple Maintenance Page
<!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&rsquo;ll be back soon!</h1>
<div>
<p>Sorry for the inconvenience but we&rsquo;re performing some maintenance at the moment. If you need to you can always <a href="mailto:[Email Address]">contact us</a>, otherwise we&rsquo;ll be back online shortly!</p>
<p>&mdash; [Team Name]</p>
</div>
</article>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment