-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloader.tsx
97 lines (83 loc) · 1.62 KB
/
loader.tsx
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
// eslint-disable-next-line import/no-anonymous-default-export
export default `
body{
display: block;
}
#globalLoader{
position: fixed;
z-index: 1700;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
display: flex;
left: 0,
right: 0;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
}
.headingLoader{
text-align: center;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
color: #000000;
font-weight: 300 !important;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;
paddingleft: 10px;
paddingRight: 10px;
fontSize: 24px;
}
.sk-cube-grid {
width: 50px;
height: 50px;
margin-left: auto;
margin-right: auto;
}
.sk-cube-grid .sk-cube {
width: 33%;
height: 33%;
background-color: #000000;
float: left;
animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.sk-cube-grid .sk-cube1 {
animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube2 {
animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube3 {
animation-delay: 0.4s;
}
.sk-cube-grid .sk-cube4 {
animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube5 {
animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube6 {
animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube7 {
animation-delay: 0s;
}
.sk-cube-grid .sk-cube8 {
animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube9 {
animation-delay: 0.2s;
}
@keyframes sk-cubeGridScaleDelay {
0%,
70%,
100% {
transform: scale3D(1, 1, 1);
}
35% {
transform: scale3D(0, 0, 1);
}
}
}`;