-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
108 lines (92 loc) · 2.12 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
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="3; url=/v2" />
<title>HazelShop - 404 Not Found</title>
<style>
@import "https://fonts.googleapis.com/css?family=VT323";
body,
h1,
h2,
h3,
h4,
p,
a {
color: #e0e2f4;
}
body,
p {
font: normal 20px/1.25rem "VT323", monospace;
}
h1 {
font: normal 2.75rem/1.05em "VT323", monospace;
}
h2 {
font: normal 2.25rem/1.25em "VT323", monospace;
}
h3 {
font: lighter 1.5rem/1.25em "VT323", monospace;
}
h4 {
font: lighter 1.125rem/1.2222222em "VT323", monospace;
}
body {
background: #0414a7;
}
.container {
width: 90%;
margin: auto;
max-width: 640px;
}
.bsod {
padding-top: 10%;
}
.bsod .neg {
text-align: center;
color: #0414a7;
}
.bsod .neg .bg {
background: #aaaaaa;
padding: 0 15px 2px 13px;
}
.bsod .title {
margin-bottom: 50px;
}
.bsod .nav {
margin-top: 35px;
text-align: center;
}
.bsod .nav .link {
text-decoration: none;
padding: 0 9px 2px 8px;
}
.bsod .nav .link:hover,
.bsod .nav .link:focus {
background: #aaaaaa;
color: #0414a7;
}
</style>
<script>
window.console = window.console || function (t) {};
</script>
</head>
<body translate="no">
<main class="bsod container">
<h1 class="neg title"><span class="bg">Error - 404</span></h1>
<p>An error has occured, to continue:</p>
<p>
* Return to our homepage.<br />
* Send us an
<a href="mailto:[email protected]" class="link">e-mail</a> about
this error and try later.
</p>
<nav class="nav">
<a href="/" class="link">index</a> | <a
href="http://phihungvohoang.github.io"
class="link"
>webmaster</a
>
</nav>
</main>
</body>
</html>