-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (55 loc) · 1.07 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap');
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Verdana;
background-color: #1c1b1b;
}
h1 {
font-family: 'Roboto Mono', monospace;
font-size: 3em;
text-align: center;
}
h2 {
font-family: 'Roboto Mono', monospace;
font-size: 2em;
color: #000000;
text-align: center;
}
.loader {
position: relative;
width: 80px;
}
.loader span {
width: 21px;
height: 21px;
display: inline-block;
background-color: #fff;
animation: square 2s linear infinite;
}
@keyframes square {
0% {
transform: translateY(0);
}
50% {
transform: translateY(25px);
opacity: 0;
}
}
.loader span:nth-child(2) {
animation-delay: 0.4s;
}
.loader span:nth-child(3) {
animation-delay: 0.8s;
}
.loader span:nth-child(4) {
animation-delay: 1.2s;
}
.loader span:nth-child(5) {
animation-delay: 1.6s;
}
.loader span:nth-child(6) {
animation-delay: 2s;
}