-
Notifications
You must be signed in to change notification settings - Fork 17
/
404.html
73 lines (68 loc) · 1.71 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
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>404 Page Not Found</title>
<style>
body {
background-color: #000;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.container {
display: flex;
align-items: center;
}
.number {
font-family: "Helvetica Neue", Arial, sans-serif;
font-size: 120px;
font-weight: bold;
color: #fff;
margin: 0 10px;
}
.disco-ball {
position: relative;
width: 100px;
height: 100px;
border-radius: 50%;
background-color: #fff;
background-image: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff),
linear-gradient(0deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%),
linear-gradient(90deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%);
background-size: 400% 400%, 10px 10px, 10px 10px;
animation: spin 3s infinite linear;
animation-name: spin;
animation-duration: 4s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
background-position: 0% 50%, 0 0, 0 0;
}
100% {
transform: rotate(360deg);
background-position: 100% 50%, 0 0, 0 0;
}
}
.text {
font-family: "Helvetica Neue", Arial, sans-serif;
font-size: 36px;
font-weight: bold;
color: #fff;
margin-top: 30px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="number">4</div>
<div class="disco-ball"></div>
<div class="number">4</div>
</div>
</body>
</html>