57 lines
1.2 KiB
HTML
57 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!--
|
|
Bootstrap based HttpErrorPages
|
|
License: MIT X11 License
|
|
https://github.com/AndiDittrich/HttpErrorPages
|
|
-->
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>We've got some trouble | 521 - Webservice currently unavailable</title>
|
|
|
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
|
|
|
|
<style type="text/css">
|
|
html,body {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #21232a;
|
|
}
|
|
|
|
body {
|
|
color: #fff;
|
|
text-align: center;
|
|
text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
|
|
padding: 0px;
|
|
min-height: 100%;
|
|
-webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, .8);
|
|
box-shadow: inset 0 0 100px rgba(0, 0, 0, .8);
|
|
display: table;
|
|
}
|
|
|
|
.lead {
|
|
color: #c0c0c0;
|
|
}
|
|
.cover {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
padding: 0 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div class="cover">
|
|
<h1>Webservice currently unavailable <small>Error 521</small></h1>
|
|
<p class="lead">We've got some trouble with our backend upstream cluster.<br />
|
|
Our service team has been dispatched to bring it back online.</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|