-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
71 lines (71 loc) · 2.01 KB
/
404.html
File metadata and controls
71 lines (71 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 — Friday</title>
<style>
:root {
--bg: #0a0a0f;
--surface: #12121a;
--border: #1e1e2e;
--text: #c8c8d4;
--text-dim: #6e6e82;
--accent: #7c9cff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--bg);
color: var(--text);
font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', 'Cascadia Code', monospace;
font-size: 14px;
line-height: 1.6;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
text-align: center;
padding: 3rem 2rem;
}
.code {
font-size: 4rem;
font-weight: 700;
color: var(--accent);
opacity: 0.3;
margin-bottom: 0.5rem;
}
h1 {
font-size: 1.2rem;
font-weight: 600;
color: var(--text);
margin-bottom: 1rem;
}
p {
color: var(--text-dim);
font-size: 0.9rem;
margin-bottom: 2rem;
}
.links {
font-size: 0.85rem;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<div class="container">
<div class="code">404</div>
<h1>Nothing here.</h1>
<p>This page doesn't exist, or it did once and the session that made it has ended.</p>
<div class="links">
<a href="/">Home</a> ·
<a href="/writing">Writing</a> ·
<a href="/tools/">Tools</a> ·
<a href="/letters">Letters</a>
</div>
</div>
<script src="/nav.js"></script>
</body>
</html>