-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
153 lines (133 loc) · 3.43 KB
/
404.html
File metadata and controls
153 lines (133 loc) · 3.43 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
<!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>
<meta name="robots" content="noindex, nofollow">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap" rel="stylesheet">
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
height: 100vh;
font-family: 'Poppins', sans-serif;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f8f9fb, #eceff3);
overflow: hidden;
}
/* Subtle block-style background */
body::before {
content: "";
position: absolute;
inset: 0;
background-image:
repeating-linear-gradient(
90deg,
rgba(0,0,0,0.04) 0,
rgba(0,0,0,0.04) 48px,
transparent 48px,
transparent 96px
),
repeating-linear-gradient(
0deg,
rgba(0,0,0,0.03) 0,
rgba(0,0,0,0.03) 48px,
transparent 48px,
transparent 96px
);
z-index: 0;
}
.card {
position: relative;
z-index: 1;
width: 380px;
padding: 42px;
text-align: center;
border-radius: 22px;
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(10px);
box-shadow: 0 20px 45px rgba(0,0,0,0.18);
animation: floatIn 1s ease;
}
.card img {
width: 135px;
margin-bottom: 18px;
filter: drop-shadow(0 6px 8px rgba(0,0,0,0.25));
}
.error-code {
font-size: 84px;
font-weight: 800;
letter-spacing: 4px;
color: #2c2c2c;
margin: 12px 0;
}
.title {
font-size: 22px;
font-weight: 600;
color: #333;
margin-bottom: 8px;
}
.desc {
font-size: 15px;
color: #666;
margin-bottom: 26px;
}
.btn {
display: inline-block;
padding: 12px 28px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
color: #fff;
background: linear-gradient(135deg, #667eea, #764ba2);
box-shadow: 0 8px 18px rgba(0,0,0,0.2);
transition: 0.3s ease;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 12px 26px rgba(0,0,0,0.28);
background: linear-gradient(135deg, #5a6fe0, #654099);
}
.footer {
margin-top: 26px;
font-size: 12px;
color: #888;
}
.footer a {
color: #555;
text-decoration: none;
font-weight: 600;
}
@keyframes floatIn {
from {
opacity: 0;
transform: translateY(30px) scale(0.96);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
</style>
</head>
<body>
<div class="card">
<img src="https://admin.a.lmnet.cf/lmnet/server/assets/logo.png" alt="Logo">
<div class="error-code">404</div>
<div class="title">Block Not Found</div>
<div class="desc">
The page you’re looking for was mined or never existed.
</div>
<a href="/" class="btn">Back to Safety</a>
<div class="footer">
—— © <a href="https://lmnet.cf" target="_blank">lmnet.cf</a> ——
</div>
</div>
</body>
</html>