-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
40 lines (40 loc) · 1.83 KB
/
Copy path404.html
File metadata and controls
40 lines (40 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page not found · Coding Challenges</title>
<meta name="robots" content="noindex" />
<link rel="icon" type="image/svg+xml" href="/coding-challenges/src/assets/favicon.svg" />
<!-- Self-contained on purpose: GitHub Pages serves this file for any missing
path at any depth, so it must not depend on relative assets. -->
<style>
:root { --paper: #faf9f5; --ink: #1a1916; --ink-2: #57544c; --clay: #c15f3c; }
@media (prefers-color-scheme: dark) {
:root { --paper: #1b1a17; --ink: #f3efe6; --ink-2: #a39e91; --clay: #d2785a; }
}
body {
margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center;
background: var(--paper); color: var(--ink);
font-family: Georgia, "Times New Roman", serif;
}
.box { max-width: 520px; padding: 32px 24px; text-align: center; }
.code { font-family: ui-monospace, Consolas, monospace; font-size: 13px; letter-spacing: 2px; color: var(--clay); text-transform: uppercase; }
h1 { font-size: 34px; font-weight: 500; margin: 12px 0 10px; }
p { color: var(--ink-2); line-height: 1.6; margin: 0 0 26px; }
a.btn {
display: inline-block; padding: 10px 22px; border: 1px solid var(--ink); border-radius: 999px;
color: var(--ink); text-decoration: none; font-size: 15px;
}
a.btn:hover { background: var(--ink); color: var(--paper); }
</style>
</head>
<body>
<div class="box">
<div class="code">404 · not found</div>
<h1>This page isn’t in the repository.</h1>
<p>The address may be misspelled, or the challenge, pattern or article it pointed to has moved.</p>
<a class="btn" href="/coding-challenges/">Back to the knowledge base</a>
</div>
</body>
</html>