-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
68 lines (68 loc) · 2.37 KB
/
Copy path404.html
File metadata and controls
68 lines (68 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex">
<meta name="theme-color" content="#0f172a">
<title>404 — Page Not Found | Carlo Cancellieri</title>
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' rx='14' fill='%230f172a'/%3E%3Ctext x='32' y='43' font-family='Menlo,monospace' font-size='26' font-weight='700' fill='%2306b6d4' text-anchor='middle'%3ECC%3C/text%3E%3C/svg%3E">
<style>
:root {
color-scheme: dark;
--primary: #0f172a;
--accent: #06b6d4;
--accent-dark: #0891b2;
--text-primary: #f1f5f9;
--text-secondary: #cbd5e1;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: var(--primary);
color: var(--text-primary);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
text-align: center;
padding: 2rem;
}
.code {
font-family: 'Fira Code', Menlo, monospace;
font-size: clamp(4rem, 15vw, 8rem);
font-weight: 700;
color: var(--accent);
line-height: 1;
}
h1 {
font-size: 1.5rem;
font-weight: 600;
margin: 1rem 0 0.5rem;
}
p {
color: var(--text-secondary);
margin-bottom: 2rem;
}
a.home {
display: inline-block;
padding: 0.75rem 1.75rem;
border-radius: 8px;
background: var(--accent);
color: var(--primary);
font-weight: 600;
text-decoration: none;
transition: background-color 0.3s ease;
}
a.home:hover, a.home:focus-visible { background: var(--accent-dark); }
</style>
</head>
<body>
<main>
<div class="code" aria-hidden="true">404</div>
<h1>Page not found</h1>
<p>The page you are looking for doesn't exist or has moved.</p>
<a class="home" href="/">Back to the homepage</a>
</main>
</body>
</html>