-
-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy path404.html
More file actions
60 lines (54 loc) · 1.19 KB
/
404.html
File metadata and controls
60 lines (54 loc) · 1.19 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
<!DOCTYPE html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)">
<title>404 Not found</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
color-scheme: light dark;
background-color: #fff;
color: #161616;
@media (prefers-color-scheme: dark) {
background-color: #000;
color: #fff;
}
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 18px;
font: 18px / 1.5 system-ui;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
h1 {
font-size: 2em;
font-weight: 500;
margin-bottom: 0.5em;
}
p {
margin-bottom: 2em;
opacity: 0.6;
}
a {
color: inherit;
text-decoration: underline;
text-underline-offset: 6px;
text-decoration-thickness: 1px;
transition: opacity 0.2s;
}
</style>
<body>
<h1>404</h1>
<p>Page not found</p>
<a href="/">Go home</a>
</body>