-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloadingStyle.css
More file actions
102 lines (97 loc) · 2.01 KB
/
loadingStyle.css
File metadata and controls
102 lines (97 loc) · 2.01 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
97
98
99
100
101
102
@keyframes spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
body {
margin: 0;
padding: 0;
}
#loadingPage {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000435;
opacity: 1;
transition: opacity 1s ease;
-webkit-transition: opacity 0.5s ease;
}
.fade-out {
opacity: 0 !important;
pointer-events: none; /* Prevents users from clicking through the invisible loader */
}
#loaded {
display: none;
}
#loadIcon {
margin: 50px 50px;
height: 240px;
width: 240px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#loadIcon div {
position: absolute;
}
#loadIcon div:first-child {
height: 120px;
width: 120px;
border-radius: 60px;
border-top: solid 10px #237699;
animation: spin 2s infinite;
-webkit-animation: spin 2s infinite;
animation-timing-function: linear;
-webkit-animation-timing-function: linear;
}
#loadIcon div:nth-child(2) {
height: 90px;
width: 90px;
border-radius: 45px;
border-top: solid 10px #6CC5EC;
top: 15px;
left: 15px;
animation: spin 1.5s infinite;
-webkit-animation: spin 1.5s infinite;
animation-timing-function: linear;
-webkit-animation-timing-function: linear;
}
#loadIcon div:nth-child(3) {
height: 60px;
width: 60px;
border-radius: 30px;
border-top: solid 10px #ACDFF6;
top: 30px;
left: 30px;
animation: spin 1s infinite;
-webkit-animation: spin 1s infinite;
animation-timing-function: linear;
-webkit-animation-timing-function: linear;
}
#loadIcon div:nth-child(4) {
height: 30px;
width: 30px;
border-radius: 15px;
border-top: solid 10px #D1EEFB;
top: 45px;
left: 45px;
animation: spin 0.5s infinite;
-webkit-animation: spin 0.5s infinite;
animation-timing-function: linear;
-webkit-animation-timing-function: linear;
}
/*# sourceMappingURL=loadingStyle.css.map */