-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path500.html
43 lines (43 loc) · 896 Bytes
/
500.html
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
<!DOCTYPE html>
<html>
<head>
<title>500 Error</title>
<style type="text/css">
html {
font-size: 62.5%;
}
body {
background-color: #fff;
color: #000;
font-family: helvetica, arial, sans-serif;
font-size: 1.4em;
line-height: 1.5;
}
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.emoji {
font-size: 9em;
text-align: center;
}
.title {
font-size: 3em;
text-align: center;
line-height: 0em;
color: grey;
}
.text {
text-align: center;
}
</style>
</head>
<body class="centered">
<div class="emoji"><img src="unicorn.gif" width=250></div>
<p class="title">Ooooops!</p>
<p class="text">Looks like our server crashed 🙀<br>
We're working on a quick fix, come back soon.</p>
</body>
</html>