-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
404.html
123 lines (106 loc) · 4.38 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
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="RichardApps">
<title>404 - PAGE NOT FOUND</title>
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="stylesheet" href="/assets/css/effects.css">
</head>
<body>
<img id="grunge-overlay">
<img id="noise-overlay">
<pre>
███████╗██╗ ██╗███████╗████████╗███████╗███╗ ███╗ ███████╗ █████╗ ██╗██╗ ██╗ ██╗██████╗ ███████╗
██╔════╝╚██╗ ██╔╝██╔════╝╚══██╔══╝██╔════╝████╗ ████║ ██╔════╝██╔══██╗██║██║ ██║ ██║██╔══██╗██╔════╝
███████╗ ╚████╔╝ ███████╗ ██║ █████╗ ██╔████╔██║ █████╗ ███████║██║██║ ██║ ██║██████╔╝█████╗
╚════██║ ╚██╔╝ ╚════██║ ██║ ██╔══╝ ██║╚██╔╝██║ ██╔══╝ ██╔══██║██║██║ ██║ ██║██╔══██╗██╔══╝
███████║ ██║ ███████║ ██║ ███████╗██║ ╚═╝ ██║ ██║ ██║ ██║██║███████╗╚██████╔╝██║ ██║███████╗
╚══════╝ ╚═╝ ╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝
</pre>
<br> 
<p>This page appears to be missing.</p>
<br>
<p>It might have been <em>relocated, deleted</em>, or <em>never existed</em> in the first place!</p>
<br>
<br>
<p>If you're looking for something specific, try checking the homepage or the archive. (Which is accessible from the projects tab.)</p>
<br>
<br>
<a href="/index.html">HOMEPAGE</a>
<footer>
<p>ERROR 404 - PAGE NOT FOUND</p>
</footer>
</body>
<style>
:root {
--main-color: #f32121;
--main-color-40: #f3212166;
--bg-color: rgb(224, 20, 20); /* Change, and paste inner values below */
--bg-color: 224, 20, 20; /* Needs to be in this format, so opacity can be controlled individually */
--bg-color-2: #f50c0c77;
}
html, body {
overflow: hidden;
height: 100%;
margin: 0;
}
body {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #220707;
}
pre, p, em, br, a {
z-index: 4;
opacity: 0.9;
white-space: unset;
}
pre {
user-select: none;
text-shadow: none;
}
p, em, a {
font-size: 1.75rem;
}
p em {
opacity: 1.0;
text-decoration: underline;
}
a {
border: 1px solid var(--main-color);
padding: 0.25em 1em 0.25em 1em;
text-decoration: none;
background: linear-gradient(45deg, rgba(255, 0, 0, 0.09) 20%, rgba(255, 3, 3, 0.329) 100%);
}
a:visited:hover, a:hover {
background-color: var(--main-color);
color: white;
box-shadow: none;
}
footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding-bottom: 1.5em;
text-align: center;
}
/* << MOBILE >> */
@media screen and (max-width: 1050px) {
pre {
font-size: 1.3vw;
}
p {
width: 100%;
text-wrap: balance;
text-align: center;
}
}
</style>
</html>