-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
132 lines (121 loc) · 2.75 KB
/
Copy path404.html
File metadata and controls
132 lines (121 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<title>404 | Bridd Jump</title>
<link rel="icon" href="infinite-campus.ico">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<style>
:root {
--bg: #000;
--accent: #0ff;
--accent-glow: rgba(0, 255, 255, 0.8);
--panel: rgba(0, 0, 0, 0.95);
--muted: #88f7ff;
--text: #fff;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
height: 100%;
margin: 0;
background: var(--bg);
color: var(--text);
font-family: "Press Start 2P", monospace;
-webkit-font-smoothing: none;
-moz-osx-font-smoothing: grayscale;
}
.wrap {
min-height: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.panel {
width: 520px;
max-width: 92vw;
background: var(--panel);
border: 4px solid var(--accent);
border-radius: 0;
padding: 28px 24px;
text-align: center;
box-shadow:
0 0 20px var(--accent-glow),
inset 0 0 20px rgba(0, 255, 255, 0.1);
}
h1 {
font-size: 26px;
color: var(--accent);
text-shadow:
0 0 10px var(--accent-glow),
0 0 20px var(--accent-glow);
margin-bottom: 12px;
}
p {
font-size: 11px;
line-height: 1.6;
color: var(--muted);
margin-bottom: 18px;
}
.btn {
appearance: none;
border: 3px solid var(--accent);
background: transparent;
color: var(--accent);
padding: 14px 24px;
border-radius: 0;
cursor: pointer;
font-size: 11px;
font-family: "Press Start 2P", monospace;
width: 100%;
max-width: 280px;
text-align: center;
transition: all 0.2s ease;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background: var(--accent);
transition: width 0.3s ease;
z-index: -1;
}
.btn:hover {
color: #000;
box-shadow:
0 0 20px var(--accent-glow),
inset 0 0 20px rgba(0, 255, 255, 0.2);
}
.btn:hover::before {
width: 100%;
}
@media (max-width: 560px) {
.panel { padding: 20px 16px; }
h1 { font-size: 20px; }
p { font-size: 10px; }
.btn { font-size: 10px; padding: 12px 16px; }
}
</style>
</head>
<body>
<div class="wrap">
<div class="panel">
<h1>404</h1>
<p>Page not found. The platform you're looking for doesn't exist.</p>
<button class="btn" onclick="window.location.href='/bridd-jump/'">GO HOME</button>
</div>
</div>
</body>
</html>