-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
179 lines (158 loc) · 5.72 KB
/
Copy path404.html
File metadata and controls
179 lines (158 loc) · 5.72 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<script>if(localStorage.getItem('theme')==='light')document.documentElement.classList.add('light');</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 - DMU Hackers</title>
<meta name="robots" content="noindex">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300..700&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha384-t1nt8BQoYMLFN5p42tRAtuAAFQaCQODekUVeKKZrEnEyp4H2R0RHFz0KWpmj7i8g" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/theme-toggle.css">
<style>
body { overflow-x: hidden; }
.error-page {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.error-page__bg {
display: none;
}
.error-page__content {
position: relative;
text-align: center;
padding: 24px;
max-width: 600px;
}
/* 404 */
.error-page__code {
position: relative;
font-family: var(--font-display);
font-size: clamp(7rem, 22vw, 14rem);
font-weight: 700;
color: var(--text);
letter-spacing: -.01em;
line-height: 1;
margin-bottom: 24px;
}
.error-page__code::before,
.error-page__code::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.error-page__code::before {
color: var(--accent);
z-index: -1;
animation: glitch-1 5s infinite linear;
}
.error-page__code::after {
color: var(--cyan);
z-index: -1;
animation: glitch-2 5s infinite linear;
}
@keyframes glitch-1 {
0%, 82%, 100% { clip-path: inset(0); transform: translate(0); }
84% { clip-path: inset(20% 0 60% 0); transform: translate(-4px, -2px); }
86% { clip-path: inset(60% 0 10% 0); transform: translate(3px, 1px); }
88% { clip-path: inset(40% 0 30% 0); transform: translate(-2px, 2px); }
90% { clip-path: inset(0); transform: translate(0); }
}
@keyframes glitch-2 {
0%, 86%, 100% { clip-path: inset(0); transform: translate(0); }
88% { clip-path: inset(70% 0 5% 0); transform: translate(4px, 2px); }
90% { clip-path: inset(10% 0 70% 0); transform: translate(-3px, -1px); }
92% { clip-path: inset(30% 0 40% 0); transform: translate(2px, -2px); }
94% { clip-path: inset(0); transform: translate(0); }
}
/* Terminal lines */
.error-page__terminal {
margin-bottom: 40px;
}
.error-page__terminal p {
font-family: var(--font-mono);
font-size: .82rem;
color: var(--text-muted);
line-height: 2;
letter-spacing: .02em;
opacity: 0;
animation: terminalReveal .4s ease forwards;
}
.error-page__terminal p span {
color: var(--accent);
}
.error-page__terminal p:nth-child(1) { animation-delay: .2s; }
.error-page__terminal p:nth-child(2) { animation-delay: .4s; }
.error-page__terminal p:nth-child(3) { animation-delay: .7s; }
.error-page__terminal p:nth-child(4) { animation-delay: .9s; }
@keyframes terminalReveal {
from { opacity: 0; transform: translateX(-8px); }
to { opacity: 1; transform: translateX(0); }
}
/* Buttons */
.error-page__actions {
display: flex;
gap: 14px;
justify-content: center;
flex-wrap: wrap;
opacity: 0;
animation: terminalReveal .4s ease 1.2s forwards;
}
/* Blinking cursor */
.error-page__cursor {
display: inline-block;
width: 8px;
height: 1em;
background: var(--accent);
margin-left: 4px;
vertical-align: text-bottom;
animation: cursorBlink .8s step-end infinite;
}
@keyframes cursorBlink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
.error-page__code::before,
.error-page__code::after { animation: none; clip-path: none; transform: none; opacity: 0; }
.error-page__terminal p { opacity: 1; animation: none; }
.error-page__actions { opacity: 1; animation: none; }
.error-page__cursor { animation: none; }
.error-page__bg { animation: none; }
}
@media (max-width: 480px) {
.error-page__terminal p { font-size: .72rem; }
}
</style>
</head>
<body>
<div class="error-page">
<div class="error-page__bg"></div>
<div class="error-page__content">
<h1 class="error-page__code" data-text="404">404</h1>
<div class="error-page__terminal">
<p><span>></span> INTRUSION DETECTED</p>
<p><span>></span> ERROR 0x194: RESOURCE NOT FOUND</p>
<p><span>></span> The page you requested has been pwned.</p>
<p><span>></span> Or maybe it never existed.<span class="error-page__cursor"></span></p>
</div>
<div class="error-page__actions">
<a href="/" class="btn btn--primary"><i class="fas fa-terminal"></i> Return to Base</a>
<a href="https://discord.gg/Vvrk4kK" class="btn btn--ghost" target="_blank" rel="noopener noreferrer"><i class="fab fa-discord"></i> Report to Discord</a>
</div>
</div>
</div>
</body>
</html>