-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
55 lines (48 loc) · 850 Bytes
/
index.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
.loading-spinner-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.8);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.loading-spinner {
width: 50px;
height: 50px;
text-align: center;
font-size: 10px;
}
.loading-spinner > div {
background-color: #333;
height: 100%;
width: 6px;
display: inline-block;
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loading-spinner .bounce1 {
animation-delay: -0.32s;
}
.loading-spinner .bounce2 {
animation-delay: -0.16s;
}
@keyframes sk-bouncedelay {
0%,
80%,
100% {
transform: scale(0);
}
40% {
transform: scale(1);
}
}
.loading-text {
font-size: 18px;
font-weight: bold;
margin-top: 20px;
text-align: center;
color: #333;
}