-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
96 lines (85 loc) · 2.26 KB
/
404.html
File metadata and controls
96 lines (85 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nice Try...</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
body {
font-family: 'Share Tech Mono', monospace;
background-color: #0d0d0d;
color: #00ff9d;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
margin: 0;
}
.container {
background: rgba(0, 0, 0, 0.8);
padding: 40px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0,255,157,0.6);
animation: flicker 2s infinite alternate;
}
.glitch {
font-size: 42px;
font-weight: bold;
text-transform: uppercase;
position: relative;
display: inline-block;
}
.glitch::before, .glitch::after {
content: attr(data-text);
position: absolute;
left: 0;
right: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
}
.glitch::before {
top: -2px;
left: 2px;
color: #ff005c;
animation: glitchTop 1.5s infinite linear alternate-reverse;
}
.glitch::after {
top: 2px;
left: -2px;
color: #00fff7;
animation: glitchBottom 1.2s infinite linear alternate-reverse;
}
@keyframes glitchTop {
0% { clip: rect(0, 9999px, 0, 0); }
50% { clip: rect(0, 9999px, 100%, 0); }
100% { clip: rect(0, 9999px, 0, 0); }
}
@keyframes glitchBottom {
0% { clip: rect(100%, 9999px, 100%, 0); }
50% { clip: rect(0, 9999px, 100%, 0); }
100% { clip: rect(100%, 9999px, 100%, 0); }
}
@keyframes flicker {
0% { box-shadow: 0 0 5px rgba(0,255,157,0.2); }
100% { box-shadow: 0 0 25px rgba(0,255,157,0.9); }
}
.tease {
font-size: 18px;
margin-top: 20px;
color: #aaa;
}
.tease span {
color: #ff005c;
}
</style>
</head>
<body>
<div class="container">
<h1 class="glitch" data-text="ACCESS DENIED">ACCESS DENIED</h1>
<p class="tease">Congrats, you found the hidden door... but <span>that’s all you get 😏</span></p>
<p class="tease">Better luck next exploit.</p>
</div>
</body>
</html>