-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrazyhtmldown.html
More file actions
96 lines (88 loc) · 2.82 KB
/
crazyhtmldown.html
File metadata and controls
96 lines (88 loc) · 2.82 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>CrazyHTML</title>
<style>
body {
margin: 0;
background: black;
color: white;
font-family: Arial, sans-serif;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.spotlight {
position: relative;
text-align: center;
animation: swing 2s infinite ease-in-out;
}
.spotlight::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0));
filter: blur(20px);
animation: rotate 4s infinite linear;
}
.text {
font-size: 2rem;
font-weight: bold;
color: #ff3333;
}
.big-text {
font-size: 5rem;
font-weight: bold;
color: #3399ff;
}
.bottom {
position: absolute;
bottom: 10px;
font-size: 1rem;
color: #00ffcc;
}
@keyframes swing {
0%, 100% {
transform: rotate(-5deg);
}
50% {
transform: rotate(5deg);
}
}
@keyframes rotate {
0% {
transform: translateX(-50%) rotate(0deg);
}
100% {
transform: translateX(-50%) rotate(360deg);
}
}
a {
color: inherit;
text-decoration: none;
}
</style>
</head>
<body>
<div class="spotlight">
<div class="text">CrazyHTML is currently down</div>
<div class="big-text">):</div>
</div>
<div class="bottom">
<a href="https://github.com/massiveL0L/crazy-html" target="_blank">https://github.com/massiveL0L/crazy-html</a>
</div>
<audio autoplay loop>
<source src="https://kappa.vgmsite.com/soundtracks/gossun-remix-ein-2008/udkbbfojer/03.%20%E9%AD%94%E7%90%86%E6%B2%99%E3%81%AF%E5%A4%A7%E5%A4%89%E3%81%AA%E3%82%82%E3%81%AE%E3%82%92%E7%9B%97%E3%82%93%E3%81%A7%E3%81%84%E3%81%8D%E3%81%BE%E3%81%97%E3%81%9F%20-%20%E8%AA%98%E3%82%8F%E3%82%8C%E3%81%A6%E3%80%81%E6%A3%AE%E3%81%AE%E5%A5%A5%E3%80%81%E5%BF%83%E3%81%AE%E5%A5%A5%20-.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>