forked from LegacyMinecraftPE/blacklist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
66 lines (59 loc) · 1.64 KB
/
404.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background-color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'JetBrains Mono', monospace;
}
.container {
text-align: center;
}
.title {
font-size: 100px;
color: #ff5733;
cursor: pointer;
transition: transform 0.3s ease-in-out;
}
.title:hover {
transform: scale(1.2);
}
.description {
font-size: 24px;
color: white;
margin-top: -20px;
}
.home-link {
display: inline;
margin-top: 20px;
padding: 0;
color: #ff5733;
text-decoration: none;
border: 2px solid #ff5733;
border-radius: 5px;
padding: 10px 20px;
transition: background-color 0.3s ease-in-out;
}
.home-link:hover {
background-color: #ff5733;
color: white;
}
</style>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap">
<title>404 Not Found</title>
</head>
<body>
<div class="container">
<h1 class="title">404</h1>
<p class="description">Page Not Found</p>
<a href="https://legacyminecraftpe.github.io/blacklist/" class="home-link">Go Home</a>
</div>
</body>
</html>