-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
76 lines (68 loc) · 1.54 KB
/
404.html
File metadata and controls
76 lines (68 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<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>
:root {
--bg-color: #ffffff;
--text-color: #161616;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #000000;
--text-color: #ffffff;
}
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
color-scheme: light dark;
background-color: var(--bg-color);
color: var(--text-color);
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 18px;
font: 18px / 1.5 system-ui, -apple-system, sans-serif;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
h1 {
font-size: 4em;
font-weight: 700;
margin-bottom: 0.25em;
opacity: 0.3;
}
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;
}
a:hover {
opacity: 0.7;
}
</style>
</head>
<body>
<h1>404</h1>
<p>Page not found</p>
<a href="/">Go home</a>
</body>
</html>