-
Notifications
You must be signed in to change notification settings - Fork 1
/
day-37.html
69 lines (66 loc) · 1.59 KB
/
day-37.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>day 38</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
::selection {
user-select: none;
}
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: sans-serif;
background: #171717;
line-height: 1;
}
h1 {
color: #ffffff;
letter-spacing: 5px;
text-transform: uppercase;
text-align: center;
line-height: 1.3;
font-size: 120px;
animation: neon 3s linear infinite alternate,
rotate 3s linear infinite alternate;
}
@keyframes rotate {
from {
transform: rotate(6deg);
}
to {
transform: rotate(-6deg);
}
}
@keyframes neon {
0% {
text-shadow: 0 0 5px #b6ff00, 0 0 14px #b6ff00, 0 0 20px #b6ff00,
0 0 25px #b6ff00, 0 0 30px #b6ff00;
}
50% {
text-shadow: 0 0 5px #ff00ff, 0 0 14px #ff00ff, 0 0 20px #ff00ff,
0 0 25px #ff00ff, 0 0 30px #ff00ff;
}
100% {
text-shadow: 0 0 5px #228dff, 0 0 14px #228dff, 0 0 20px #228dff,
0 0 25px #228dff, 0 0 30px #228dff;
}
}
</style>
</head>
<body>
<h1>
coming <br />
soon!
</h1>
</body>
</html>