-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
52 lines (52 loc) · 1.28 KB
/
Copy path404.html
File metadata and controls
52 lines (52 loc) · 1.28 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
<!--
404.html: GitHub Pages fallback page for missing assets or invalid URLs.
It keeps the same OBS-inspired styling and provides a simple link back to the repository root.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 — Page Not Found</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background: #030806;
color: #9cff9c;
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
text-align: center;
padding: 24px;
}
h1 {
margin: 0;
font-size: clamp(2.5rem, 6vw, 4rem);
letter-spacing: 0.12em;
}
p {
margin: 1rem 0 2rem;
max-width: 36rem;
color: #c4f7c4;
opacity: 0.9;
line-height: 1.6;
}
a {
color: #7cff7c;
text-decoration: none;
border-bottom: 1px solid rgba(124, 255, 124, 0.35);
}
a:hover {
color: #ecffec;
}
</style>
</head>
<body>
<div>
<h1>404 — Page not found</h1>
<p>The page you were looking for doesn't exist here. Head back to the homepage and continue exploring the OBS HTML assets.</p>
<a href="/">Return home</a>
</div>
</body>
</html>