-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (92 loc) · 1.5 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
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
*{
margin: 0px;
padding: 0px;
font-family: Segoe UI Light,Segoe UI,Arial;
font-size: 22px;
cursor: none;
}
.container{
background-color: #006dae;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: end;
color: white;
}
.text-container{
display:flex;
flex-direction: column;
justify-content: end;
height:50%;
padding: 8px;
gap: 35px;
}
.text-under-spin{
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
height: 50%;
}
.bottom-text{
display: flex;
justify-content: center;
align-items: end;
padding: 50px;
}
.load{
height: 50px;
width: 50px;
position: absolute;
animation: rotate 3.5s linear infinite;
}
.load .dot{
top: 30px;
height: 6px;
width: 6px;
background: white;
border-radius: 50%;
position: relative;
}
.spin{
display:flex;
justify-content: center;
margin-bottom: 40px;
}
@keyframes rotate{
30%{
transform: rotate(220deg);
}
40%{
transform: rotate(450deg);
}
75%{
transform: rotate(720deg);
opacity: 1;
}
76%{
opacity: 0;
}
100%{
transform: rotate(0deg);
opacity: 0;
}
}
.load:nth-child(1){
animation-delay: 0.15s;
}
.load:nth-child(2){
animation-delay: 0.3s;
}
.load:nth-child(3){
animation-delay: 0.45s;
}
.load:nth-child(4){
animation-delay: 0.6s;
}
.load:nth-child(5){
animation-delay: 0.75s;
}
.load:nth-child(6){
animation-delay: 0.9s;
}