-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
26 lines (25 loc) · 1.14 KB
/
Copy path404.html
File metadata and controls
26 lines (25 loc) · 1.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>404 | GraphTheory</title>
<meta name="robots" content="noindex" />
<style>
body { margin: 0; min-height: 100vh; display: grid; place-items: center; background: #04070a; color: #f0effa; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
main { width: min(720px, calc(100vw - 32px)); border: 1px solid rgba(9,239,226,.5); padding: 32px; box-shadow: 0 0 60px rgba(9,239,226,.18); }
h1 { margin: 0 0 14px; font-size: clamp(48px, 14vw, 120px); line-height: .85; letter-spacing: -.08em; }
p { color: #a0a6cf; line-height: 1.6; }
a { color: #09efe2; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.feed-row code, .feed-row span, .feed-row a { overflow-wrap: anywhere; word-break: break-word; min-width: 0; }
@media (max-width: 420px) { .ring { width: 100%; } }
</style>
</head>
<body>
<main>
<h1>404</h1>
<p>graph edge not found. return to the research node.</p>
<a href="./">Back to GraphTheory</a>
</main>
</body>
</html>