-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
97 lines (85 loc) · 3.04 KB
/
404.html
File metadata and controls
97 lines (85 loc) · 3.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel='shortcut icon' type='image/x-icon' href='./favicon.ico' />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>UltraBox 404</title>
<meta name="application-name" content="UltraBox" />
<meta name="apple-mobile-web-app-title" content="UltraBox">
<meta name="description" content="UltraBox is a mod of BeepBox that aims to combine every other beepmod into one." />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="theme-color" content="#444" />
<meta name="msapplication-TileColor" content="#dba600" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<meta name="format-detection" content="telephone=no" />
<link rel="apple-touch-icon" sizes="180x180" href="/icon_32.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/icon_32.png" />
<link rel="manifest" href="/manifest.webmanifest" />
<link href="https://fonts.googleapis.com/css?family=B612" rel="stylesheet" media="none" onload="if (this.media != 'all') this.media='all';" /> <!-- this is a trick to load CSS asynchronously. -->
<style type="text/css">
html {
background: var(--page-margin, black);
overflow-x: hidden;
font-size: large;
font-family: 'B612', sans-serif;
line-height: 1.3;
color: var(--primary-text, white);
}
body {
margin: auto;
overflow-x: hidden;
display: flex;
flex-direction: column;
align-items: center;
align-content: center;
}
h1 {
font-size: 1.7rem;
text-align: center;
margin-top: 0.5em;
margin-bottom: 0.5em;
-webkit-text-stroke-width: 0;
}
h2 {
font-size: 1.5rem;
text-align: center;
margin-top: 0.5em;
margin-bottom: 0.5em;
-webkit-text-stroke-width: 0;
}
a {
color: var(--link-accent, #98f);
}
/* wide screen */
@media (min-width: 711px) {
html {
width: 100%;
}
body {
width: 100%;
}
}
/* narrow screen */
@media (max-width: 710px) {
body {
width: 100%;
}
p {
margin: 1em 0.5em;
}
}
</style>
</body>
<!--<font color="#9c64f7">404</font>-->
<h1>... oops.</h1>
<p>So it seems that, for whatever reason, you hit a 404. You let that cactus hit you, didn't ya.</p>
<!-- <h1><img id="404" src="uh_oh_404.png" /></h1>
<audio controls="false" autoplay="true" loop="true">
<source src="Game_Over.ogg" type="audio/ogg">
Your browser does not support the audio element.
</audio> -->
</body>
</html>