-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
78 lines (78 loc) · 1.79 KB
/
Copy path404.html
File metadata and controls
78 lines (78 loc) · 1.79 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
72
73
74
75
76
77
78
<!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 — Axinote</title>
<style>
:root {
--bg: #0b0d12;
--card: #121723;
--text: #e7ecf3;
--muted: #97a3b6;
--border: #1f2838;
--accent: #5b8cff;
}
@media (prefers-color-scheme: light) {
:root {
--bg: #f7f9fc;
--card: #ffffff;
--text: #111827;
--muted: #5b6473;
--border: #e5e9f2;
--accent: #2f6cff;
}
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--bg);
color: var(--text);
display: grid;
place-items: center;
padding: 24px;
}
.wrap {
width: 100%;
max-width: 440px;
border: 1px solid var(--border);
background: var(--card);
border-radius: 12px;
padding: 28px 24px;
}
h1 {
margin: 0;
font-size: 18px;
font-weight: 600;
letter-spacing: 0.01em;
}
p {
margin: 10px 0 0;
color: var(--muted);
font-size: 14px;
line-height: 1.5;
}
.actions { margin-top: 18px; }
a {
display: inline-block;
text-decoration: none;
font-size: 14px;
font-weight: 600;
color: #fff;
background: var(--accent);
padding: 10px 14px;
border-radius: 8px;
}
</style>
</head>
<body>
<main class="wrap" role="main" aria-labelledby="title">
<h1 id="title">Page not found</h1>
<p>This page does not exist or has moved.</p>
<div class="actions">
<a href="/">Go to landing page</a>
</div>
</main>
</body>
</html>