-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
42 lines (42 loc) · 2.33 KB
/
Copy path404.html
File metadata and controls
42 lines (42 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Erratum | Nicholas Tavares</title>
<meta name="robots" content="noindex" />
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='6' fill='%2307070d'/%3E%3Ctext x='16' y='23' font-size='20' text-anchor='middle' fill='%23e94560' font-family='Georgia'%3E%E2%88%87%3C/text%3E%3C/svg%3E" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<style>
:root {
--paper: #f2ede2; --ink: #1b1611; --ink2: #5a5140; --rule: #d8cfbc; --red: #a53125;
}
@media (prefers-color-scheme: dark) {
:root { --paper: #16120d; --ink: #e6ddca; --ink2: #ab9f87; --rule: #352d22; --red: #e07a57; }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--paper); color: var(--ink);
font-family: "Newsreader", Georgia, serif; font-size: 17px; line-height: 1.75;
min-height: 100vh; display: flex; align-items: center; justify-content: center;
padding: 28px;
}
.box { max-width: 480px; border-top: 2px solid var(--ink); padding-top: 18px; }
.num { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--red); letter-spacing: 2.5px; text-transform: uppercase; }
h1 { font-weight: 500; font-size: 40px; margin: 8px 0 14px; letter-spacing: -0.5px; }
p { color: var(--ink2); margin-bottom: 10px; }
.foot { border-top: 1px solid var(--rule); margin-top: 22px; padding-top: 14px; }
a { color: var(--red); }
</style>
</head>
<body>
<div class="box">
<div class="num">Erratum · 404</div>
<h1>This page does not appear in the present volume.</h1>
<p>Either the address contains a misprint, or the section was removed in revision. The author regrets the inconvenience and notes that the error has been confined to this page.</p>
<p class="foot">Return to <a href="/">the front matter</a>, or press <em>/</em> once you are there.</p>
</div>
</body>
</html>