-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
118 lines (105 loc) · 2.69 KB
/
404.html
File metadata and controls
118 lines (105 loc) · 2.69 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>UnFi • 404 — Lost in Bootloader</title>
<link rel="icon" type="image/png" href="UnFi.png">
<link rel="apple-touch-icon" href="UnFi.png">
<meta name="theme-color" content="#7b5cff">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin:0;
background: #0a0f18;
font-family: Consolas, Menlo, "JetBrains Mono", monospace;
display:flex;
align-items:center;
justify-content:center;
min-height:100vh;
overflow:hidden;
color:#fff;
}
.noise {
position:fixed;
inset:0;
pointer-events:none;
background:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==") repeat;
opacity:.05;
}
.scanline {
position:fixed;
inset:0;
background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.03) 3%, transparent 6%);
background-size:100% 6px;
mix-blend-mode:overlay;
animation: scan 3s linear infinite;
}
@keyframes scan {
0% {transform: translateY(-100%);}
100% {transform: translateY(100%);}
}
.box {
text-align:center;
padding:40px;
border-radius:14px;
background:rgba(255,255,255,0.03);
backdrop-filter: blur(8px);
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 0 40px rgba(123,92,255,0.25);
max-width:500px;
}
.big {
font-size:110px;
font-weight:900;
letter-spacing:-2px;
background:linear-gradient(90deg, #7b5cff, #00e0a1);
-webkit-background-clip:text;
color:transparent;
animation: pulse 2.4s infinite alternate ease-in-out;
}
@keyframes pulse {
0% {filter:drop-shadow(0 0 16px rgba(123,92,255,.3));}
100% {filter:drop-shadow(0 0 26px rgba(0,224,161,.35));}
}
.text {
font-size:16px;
margin-top:8px;
opacity:.75;
}
.btn {
margin-top:28px;
display:inline-flex;
padding:12px 18px;
background:linear-gradient(90deg, #7b5cff, #00e0a1);
border:none;
border-radius:10px;
font-weight:800;
cursor:pointer;
color:#081018;
text-decoration:none;
transition:.25s;
box-shadow:0 6px 20px rgba(0,0,0,.4);
}
.btn:hover {
filter:brightness(1.2);
transform:translateY(-2px);
}
.mini {
margin-top:10px;
opacity:.4;
font-size:13px;
}
</style>
</head>
<body>
<div class="noise"></div>
<div class="scanline"></div>
<div class="box">
<div class="big">404</div>
<div class="text">You slipped out of the boot chain, traveler.</div>
<div class="text">This route is not mapped in UnFi.</div>
<a href="https://unfi.pp.ua" class="btn">Return to Boot Sequence</a>
<div class="mini">Error Code: UNFI-OUT-OF-ADDRESS-404</div>
</div>
</body>
</html>