-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
122 lines (97 loc) · 3.07 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Extraordinary VST plugins based on physical simulations">
<meta name="author" content="Überton">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="ico/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="ico/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="ico/favicon-16x16.png">
<link rel="manifest" href="ico/site.webmanifest">
<link rel="mask-icon" href="ico/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="css/main.css">
<title>Überton · 404</title>
<script>// prevent css transitions on start</script>
<script src="js/main.js"></script>
<style>
main {
font-size: 1.5rem;
text-align: left;
display: flex;
justify-content: center;
flex-direction: column;
}
body {
background-color: #090909;
background-image: url(media/img/404_background.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
background: #090909;
}
main img {
max-width: 80%;
image-rendering: -webkit-optimize-contrast;
}
.header {
display: flex;
justify-content: center;
filter: invert() brightness(0.2);
margin-top: 2rem;
}
.main-wrapper {
margin-top: 3rem;
}
.heading {
font-size: 3rem;
margin: 0;
}
@media screen and (max-width: 900px) {
main {
font-size: 1.3rem;
}
main img {
max-width: 100%;
}
.main-wrapper {
margin-top: 1.5rem;
}
.heading {
font-size: 2rem;
}
}
@media screen and (max-width: 430px) {
main {
font-size: 1.2rem;
}
.main-wrapper {
margin-top: 1rem;
}
}
</style>
</head>
<body onload="onBodyLoad()">
<div class="header">
<img src="media/img/logo_black_glow.svg">
</div>
<div class="main-wrapper">
<main>
<p class="heading">
404
</p>
<p>
Oops, looks like a black hole has
swallowed the page you're trying to visit.
</p>
<img src="media/img/404_background.jpg" />
<ul>
<li>Go <a class="mhref" href="./">back to the main page</a> or</li>
<li><a class="mhref" href="./Contact">contact</a> the developers</li>
</ul>
</main>
</div>
</body>
</html>