-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy path418.html
45 lines (41 loc) · 812 Bytes
/
418.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
44
45
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/_errors/main.css"/>
<title>Error 418 - %{HOSTNAME}</title>
<style>
html{
background-image:url('/_errors/images/teapot.jpg');
background-size: cover;
background-position: 50% 50%;
}
body>div.overlay{
position: absolute;
display: flex;
align-items: center;
justify-content: center;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: 100vh;
width: 100vw;
background-color: rgba(20,20,20, 0.5);
}
body>div.overlay>.error-middle{
position: relative;
}
body{
color: #fefefe;
}
</style>
</head>
<body>
<div class="overlay">
<div class="error-middle">
<h1>Error 418 - I'm a teapot</h1>
<p>I cannot brew your coffee because I'm a teapot.</p>
</div>
</div>
</body>
</html>