-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.css
109 lines (98 loc) · 1.89 KB
/
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
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
103
104
105
106
107
108
109
/* Styles for the index.html template page, specifically used for the loading screen */
.loading-screen-icon {
box-sizing: border-box;
margin: 0;
display: block;
justify-content: center;
text-align: center;
height: 90%;
max-width: 90%;
}
.loading-screen-subtitle {
box-sizing: border-box;
margin: 0;
text-align: center;
height: 8vh;
overflow: hidden;
}
.loading-screen-splash-container {
box-sizing: border-box;
margin: 0;
overflow-x: hidden;
}
.loading-screen-top-container {
box-sizing: border-box;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 40vh;
overflow: hidden;
}
.loading-screen-bottom-container {
box-sizing: border-box;
margin: 0;
padding-top: 1vh;
display: flex;
justify-content: center;
height: 50vh;
overflow: hidden;
}
.loading-screen-container {
box-sizing: border-box;
margin: 0;
display: flex;
align-items: center;
overflow: visible;
}
.loading-screen-circle {
box-sizing: border-box;
margin: 0;
border: 10px solid transparent;
margin: -2px;
display: block;
border-radius: 100%;
}
.loading-screen-holder {
box-sizing: border-box;
margin: 0;
animation: spin 9s linear infinite;
overflow: visible;
}
.loading-screen-support {
box-sizing: border-box;
margin: 0;
border: 10px solid #00000000;
margin: 85px;
display: block;
}
.loading-screen-spin {
box-sizing: border-box;
margin: 0;
animation: spin 3s linear infinite;
}
.loading-screen-c1 {
box-sizing: border-box;
margin: 0;
border-top: 10px solid #00aeef;
}
.loading-screen-c2 {
box-sizing: border-box;
margin: 0;
border-top: 10px solid #c7efcf;
}
.loading-screen-c3 {
box-sizing: border-box;
margin: 0;
border-top: 10px solid #fdb913;
}
.loading-screen-c4 {
box-sizing: border-box;
margin: 0;
border-top: 10px solid #ff5d53;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}