-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
59 lines (59 loc) · 1.67 KB
/
Copy path404.html
File metadata and controls
59 lines (59 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="theme-color" content="#1a1621">
<title>404 - dnyo.co.uk</title>
<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=JetBrains+Mono:wght@400;600&family=Space+Grotesk:wght@400;600&display=swap" rel="stylesheet">
<style>
:root {
--bg-0: #14111b;
--bg-1: #1a1621;
--ink: #eee9fc;
--muted: #9a90b3;
--accent: #b3f4f3;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
color: var(--ink);
background: radial-gradient(1000px 600px at 10% -20%, #2b2436, transparent),
radial-gradient(700px 500px at 90% -10%, #1c2a35, transparent),
linear-gradient(160deg, var(--bg-0), var(--bg-1) 40%, var(--bg-0));
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
text-align: center;
}
.code {
font-family: "Space Grotesk", sans-serif;
font-size: 72px;
color: var(--accent);
margin: 0;
}
.msg {
color: var(--muted);
font-size: 14px;
margin: 8px 0 24px;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<div>
<h1 class="code">404</h1>
<p class="msg">page not found</p>
<a href="/">← back home</a>
</div>
</body>
</html>