-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
67 lines (60 loc) · 1.27 KB
/
404.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<html>
<head>
<title>404 Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@font-face {
font-family: "Twilight Zone";
src: url("/assets/fonts/twilight.ttf");
}
html, body {
margin: 0;
padding: 0;
background-color: black;
}
.zone {
padding: 1em;
color: gray;
position: absolute;
top: 50%;
transform: translateY(-50%);
width: calc(100vw - 2em);
}
a {
color: white;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.zone h1 {
color: white;
font-family: "Twilight Zone";
font-size: 10vw;
text-align: center;
font-weight: normal;
}
div {
font-size: 1.5em;
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
font-weight: normal;
text-align: center;
}
@media only screen and (max-width: 768px) {
.zone h1 {
font-size: 15vw;
}
div {
font-size: 20px;
}
}
</style>
</head>
<body>
<div class="zone">
<div>Whoops! Looks like you've stumbled upon...</div>
<h1>The<br>Kmh.Zone</h1>
<div>Here you will find a land of both shadow and substance... but no web page. Maybe try the <a href="https://kmh.zone">home page</a>?</div>
</div>
</body>
</html>