mirror of
https://github.com/jsbin/jsbin.git
synced 2026-01-18 15:18:04 +00:00
208 lines
5.2 KiB
HTML
208 lines
5.2 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>504: JS Bin timeout</title>
|
|
<style>
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: 'Doppio One', sans-serif;
|
|
background: #3FA8C6;
|
|
background: -moz-linear-gradient(top, #3fa8c6 0%, #3fa8c6 0%, #399ab2 100%);
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3fa8c6), color-stop(0%,#3fa8c6), color-stop(100%,#399ab2));
|
|
background: -webkit-linear-gradient(top, #3fa8c6 0%,#3fa8c6 0%,#399ab2 100%);
|
|
background: -o-linear-gradient(top, #3fa8c6 0%,#3fa8c6 0%,#399ab2 100%);
|
|
background: -ms-linear-gradient(top, #3fa8c6 0%,#3fa8c6 0%,#399ab2 100%);
|
|
background: linear-gradient(to bottom, #3fa8c6 0%,#3fa8c6 0%,#399ab2 100%);
|
|
background-color: #399AB2;
|
|
background-repeat: repeat-x;
|
|
color: #fff;
|
|
text-shadow: 0 1px 0 rgba(0,0,0,.3);
|
|
line-height: 1.5;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.wrapper {
|
|
width: 50%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
letter-spacing: -0.03em;
|
|
font-size: 2em;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
text-decoration: none;
|
|
border-bottom: 1px solid #fff;
|
|
border-bottom: 1px solid rgba(255,255,255,0.7);
|
|
padding-bottom: 0.15em;
|
|
position: relative;
|
|
}
|
|
|
|
a:after {
|
|
content: '';
|
|
position: absolute;
|
|
height: 1px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: -2px;
|
|
background: rgba(0,0,0,.1);
|
|
}
|
|
|
|
a:hover {
|
|
color: #C0E3EC;
|
|
}
|
|
|
|
h1 {
|
|
text-align: left;
|
|
margin: 0.667em 0 0;
|
|
padding-left: 0.5em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
small {
|
|
margin-top: 1em;
|
|
display: block;
|
|
font-style: italic;
|
|
font-size: 0.667em;
|
|
}
|
|
|
|
p em {
|
|
font-style: none;
|
|
}
|
|
|
|
#welcome {
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding-bottom: 1em;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
#welcome > div {
|
|
padding-top: 1px;
|
|
}
|
|
|
|
#dave {
|
|
float: left;
|
|
margin-top: 3em
|
|
}
|
|
|
|
#welcome > h2 {
|
|
margin-top: 0.5em;
|
|
padding-left: 0.5em;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.bubble p {
|
|
line-height: 22px;
|
|
}
|
|
|
|
.bubble {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: rgba(255, 255, 255, 0.1);
|
|
|
|
padding: 0.667em 1em;
|
|
position: relative;
|
|
}
|
|
|
|
.bubble:after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 20px solid transparent;
|
|
border-bottom: 20px solid transparent;
|
|
border-right: 20px solid white;
|
|
border-right-color: inherit;
|
|
top: 50px;
|
|
left: -20px;
|
|
}
|
|
|
|
img {
|
|
z-index: 1;
|
|
-webkit-transition: -webkit-transform 2s ease-in-out;
|
|
-moz-transition: -moz-transform 2s ease-in-out;
|
|
-o-transition: -o-transform 2s ease-in-out;
|
|
-ms-transition: -ms-transform 2s ease-in-out;
|
|
transition: transform 2s ease-in-out;
|
|
position: relative;
|
|
}
|
|
|
|
img:active {
|
|
-webkit-transform: rotate(1440deg) scale(1.2);
|
|
-moz-transform: rotate(1440deg) scale(1.2);
|
|
-o-transform: rotate(1440deg) scale(1.2);
|
|
-ms-transform: rotate(1440deg) scale(1.2);
|
|
transform: rotate(1440deg) scale(1.2);
|
|
}
|
|
|
|
@media screen and (max-width: 1200px) {
|
|
.wrapper {
|
|
width: 80%;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.wrapper {
|
|
width: auto;
|
|
margin: 0;
|
|
}
|
|
#welcome {
|
|
margin-right: 2.5%;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 500px) {
|
|
.wrapper {
|
|
text-align: center;
|
|
}
|
|
|
|
#dave {
|
|
float: none;
|
|
}
|
|
|
|
#welcome {
|
|
padding: 0 1.5em;
|
|
margin: 0;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
margin-bottom: 0;
|
|
padding-left: 0;
|
|
font-size: 1.8em;
|
|
}
|
|
|
|
#welcome > h2 {
|
|
margin-bottom: 0.667em;
|
|
}
|
|
.bubble {
|
|
text-align: center;
|
|
}
|
|
.bubble:after {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<img id="dave" src="http://static.jsbin.com/images/jsbin_static.png" alt="Dave, the JS Bin bot">
|
|
<div id="welcome">
|
|
<h1>502: Dave's left the building</h1>
|
|
<div class="bubble">
|
|
<p>JS Bin isn't available right now. Someone should be working on it,
|
|
and you can check the current status on <a href="http://status.jsbin.com">status.jsbin.com</a>, but do feel free to <a href="https://twitter.com/intent/tweet?text=@js_bin%20love%20the%20service,%20but%20it%20looks%20like%20you're%20currently%20down%20(502).%20I've%20checked%20status.jsbin%20but%20thought%20I'd%20give%20you%20a%20heads%20up.">ping @js_bin</a>.</p>
|
|
<p>If you want to add details please add it to the <a href="http://github.com/remy/jsbin/issues">issues page</a> and add any additional information you can to help diagnose this atrocity.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|