Last active
December 23, 2015 18:39
-
-
Save jaesharp/6677474 to your computer and use it in GitHub Desktop.
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> | |
<title>Mavenlink is unavailable due to scheduled maintenance. Mavenlink will return shortly.</title> | |
<style type="text/css"> | |
html, body { | |
width: 100%; height: 100%; | |
margin: 0; padding: 0; | |
overflow: hidden; | |
} | |
body { | |
padding-top: 4em; | |
text-align: center; font-family: arial, sans-serif; | |
background: #206cd7; /* Old browsers */ | |
background: -moz-radial-gradient(center, ellipse cover, #206cd7 0%, #001c44 100%); /* FF3.6+ */ | |
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#206cd7), color-stop(100%,#001c44)); /* Chrome,Safari4+ */ | |
background: -webkit-radial-gradient(center, ellipse cover, #206cd7 0%,#001c44 100%); /* Chrome10+,Safari5.1+ */ | |
background: -o-radial-gradient(center, ellipse cover, #206cd7 0%,#001c44 100%); /* Opera 12+ */ | |
background: -ms-radial-gradient(center, ellipse cover, #206cd7 0%,#001c44 100%); /* IE10+ */ | |
background: radial-gradient(ellipse at center, #206cd7 0%,#001c44 100%); /* W3C */ | |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#206cd7', endColorstr='#001c44',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ | |
background-repeat: no-repeat; | |
} | |
div.dialog { | |
width: 25em; | |
padding: 0 4em; | |
margin: 0 auto 0 auto; | |
} | |
a span.maven-part { | |
color: white; | |
font-weight: bolder; | |
} | |
a span.link-part { | |
color: rgba(249, 171, 0, 1.0); | |
font-weight: 100; | |
} | |
h1 { | |
font-size: 300%; | |
} | |
p,a { | |
color: white; | |
text-decoration: none; | |
} | |
p a { | |
text-decoration: underline; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="dialog"> | |
<h1> | |
<a href="http://mavenlink.com"><span class="maven-part">maven</span><span class="link-part">link</span></a> | |
</h1> | |
<p> | |
Mavenlink is unavailable due to scheduled maintenance. Mavenlink will return shortly. | |
</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment