-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
67 lines (53 loc) · 969 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 | Page not found</title>
<style>
body {
font-family: system-ui, sans-serif;
line-height: 1.5;
min-height: 84svh;
display: grid;
place-content: center;
}
main {
padding-inline-end: 1rem;
}
h1, p, ul {
margin-block: 0.5rem;
}
ul {
line-height: 2;
padding-left: 0;
list-style-position: inside;
}
a {
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
body {
background-color: oklch(31.14% 0.021 285.75);
color: oklch(90% 0.008 286.75);
}
a {
color: oklch(87.14% 0.071 7.09);
}
a:visited {
color: oklch(87.14% 0.031 7.09);
}
}
</style>
</head>
<body>
<main>
<h1>404</h1>
<p>This page was not found</p>
<ul>
<li><a href="/">Go to the site index</a></li>
<li><a href="https://github.com/mnvr/mrmr.io">Report an issue</a></li>
</ul>
</main>
</body>
</html>