-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoadingIcons.css
More file actions
98 lines (85 loc) · 1.64 KB
/
LoadingIcons.css
File metadata and controls
98 lines (85 loc) · 1.64 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
/*
Support the loading icon's look
*/
p {
color: white;
font: 300 4em/150% Impact;
position: absolute;
z-index: 1;
}
.LoadingDotsAnimation {
font-size: 40px;
}
.LoadingDotsAnimation span {
font-size: 50px;
animation-name: blink;
animation-duration: 1.4s;
animation-iteration-count: infinite;
animation-fill-mode: both;
}
.LoadingDotsAnimation span:nth-child(2) {
animation-delay: .2s;
}
.LoadingDotsAnimation span:nth-child(3) {
animation-delay: .4s;
}
@keyframes blink {
0% {
opacity: .2;
}
20% {
opacity: 1;
}
100% {
opacity: .2;
}
}
.LoadingSpinnerAnimation {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
position: absolute;
z-index: 1;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); } }
#LoadingScreenProgress {
width: 100%;
height: 30px;
top:calc(50% + 120px);
background-color: grey;
position: absolute;
z-index: 2;
}
#LoadingScreenBar {
width: 0%;
height: 30px;
background-color: green;
position: absolute;
font-size: 30px;
z-index: 3;
}
#LoadingSpinner {
top:calc(50% - 80px);
left:calc(50% - 70px);
}
#LoadingDots {
top:calc(50% + 20px);
left:calc(50% - 65px);
}
#GLCanvas{
position: absolute;
z-index: 0;
}
#LoadingIconParent{
position: relative;
top: 0px;
left: 0px;
}
table, th, td {
border: 1px solid black;
}