File size: 3,635 Bytes
a01128b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
<!DOCTYPE html>
<html lang="en">
<head>
<style>
/* Copyright 1999-2017. Parallels IP Holdings GmbH. All Rights Reserved. */
html {
overflow-y: scroll;
color: #000;
font: 400 62.5%/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-tap-highlight-color: transparent;
}
body,
html {
height: 100%;
min-height: 100%;
}
body {
margin: 0;
font-size: 1.3rem;
background: #fff;
color: #000;
}
a {
cursor: pointer;
text-decoration: none;
color: #2498e3;
background-color: transparent;
}
a:active,
a:hover {
text-decoration: underline;
color: #188dd9;
outline: 0;
}
h1,
h2 {
margin: 0 0 0.5rem;
color: #444;
font-weight: 400;
line-height: 1;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 3.6rem; }
.error-code {
color: #f47755;
font-size: 8rem;
line-height: 1;
}
p { margin: 1.2rem 0; }
p.lead {
font-size: 1.6rem;
color: #4f5a64;
}
hr {
box-sizing: content-box;
height: 0;
margin: 2.4rem 0;
border: 0;
border-top: 1px solid #ddd;
}
.page {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
min-height: 100vh;
}
.page:before {
display: block;
content: '';
-webkit-box-flex: 0;
-ms-flex: 0 1 474px;
flex: 0 1 474px;
background: #38444f url(server.svg) 50% 6em no-repeat;
background-size: 44% auto;
}
.main {
-webkit-box-flex: 1;
-ms-flex: 1 1 70%;
flex: 1 1 70%;
box-sizing: border-box;
padding: 10rem 5rem 5rem;
min-height: 100vh;
}
.error-description {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
}
.help-actions a {
display: inline-block;
border: 2px solid #23a7de;
margin: 0 0.5rem 0.5rem 0;
padding: 0.5rem 1rem;
text-decoration: none;
-webkit-transition: 0.25s ease;
transition: 0.25s ease;
}
.help-actions a:hover {
text-decoration: none;
background: #23a7de;
color: #fff;
}
@media (max-width:959px) {
.page:before {
-ms-flex-preferred-size: 400px;
flex-basis: 400px;
background-position: 50% 4rem;
}
.main { padding: 5rem; }
}
@media (max-width: 769px) {
.page {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.page:before {
-ms-flex-preferred-size: 250px;
flex-basis: 250px;
background-position: 5rem -4.8rem;
background-size: 166px auto;
}
.main { /* for IE 11 */
min-height: 0;
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
}
}
@media (max-width: 479px) {
h2 { font-size: 3rem; }
.main { padding: 3rem; }
}
</style>
<meta charset="utf-8">
<meta content="ie=edge" http-equiv="x-ua-compatible">
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<title>
503 Service Temporarily Unavailable
</title>
</head>
<body>
<div class="page">
<div class="main">
<h1>
Server Error
</h1>
<div class="error-code">
503
</div>
<h2>
Service Temporarily Unavailable
</h2>
<p class="lead">
The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
</p>
<hr>
<p>
That's what you can do
</p>
<div class="help-actions">
<a>
Reload Page
</a>
<a>
Back to Previous Page
</a>
<a>
Home Page
</a>
</div>
</div>
</div>
</body>
</html>
|