-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
61 lines (61 loc) · 1.55 KB
/
Copy path404.html
File metadata and controls
61 lines (61 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 — Particles</title>
<meta name="description" content="Page not found. Return to the Particles gallery.">
<meta name="robots" content="noindex">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<meta name="theme-color" content="#050505">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #050505;
color: #fff;
font-family: 'Courier New', monospace;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
}
h1 {
font-size: 96px;
font-weight: 200;
letter-spacing: 8px;
color: rgba(255,255,255,0.8);
margin-bottom: 20px;
}
p {
font-size: 14px;
letter-spacing: 3px;
text-transform: uppercase;
color: rgba(255,255,255,0.4);
margin-bottom: 40px;
}
a {
color: rgba(255,255,255,0.6);
text-decoration: none;
font-size: 12px;
letter-spacing: 3px;
text-transform: uppercase;
border: 1px solid rgba(255,255,255,0.1);
padding: 12px 28px;
border-radius: 8px;
transition: all 0.3s;
}
a:hover {
border-color: rgba(255,255,255,0.3);
color: #fff;
}
</style>
</head>
<body>
<h1>404</h1>
<p>Particle not found in this dimension</p>
<a href="/">Return to Gallery</a>
</body>
</html>