-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
106 lines (93 loc) · 2.63 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
div.loading-ui-overlay {
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
background-color: RGBA(255, 255, 255, 0.5);
z-index: 999999;
}
div.loading-ui-overlay div.loading-ui-wrapper {
position: relative;
margin: 15% auto;
max-width: 30rem;
}
div.loading-ui-overlay div.loading-ui-wrapper div.loading-ui-body {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border-radius: .25rem;
text-align: center;
padding: 1.25rem;
border: none;
-webkit-box-shadow: 0px 0px 13px 0px rgba(236, 236, 241, 0.44);
box-shadow: 0px 0px 13px 0px rgba(236, 236, 241, 0.44);
margin-bottom: 30px;
color: #5b626b;
padding: 1.25rem;
}
div.loading-ui-overlay div.loading-ui-wrapper div.loading-ui-body h4.loading-ui-title {
font-size: 16px;
margin: 10px 0;
margin-bottom: .75rem;
line-height: 1.2;
}
div.loading-ui-overlay div.loading-ui-wrapper div.loading-ui-body p.loading-ui-text {
font-size: 14px;
}
div.loading-ui-overlay div.loading-ui-wrapper div.loading-ui-body div.loading-ui-spinner {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
border: .25em solid currentColor;
border-right-color: transparent;
border-radius: 50%;
-webkit-animation: spinner-border .75s linear infinite;
animation: spinner-border .75s linear infinite;
color: #38a4f8 !important;
margin: 0 auto;
}
div.loading-ui-overlay div.loading-ui-wrapper div.loading-ui-body div.loading-ui-progress {
background-color: #e9ecef;
height: 1rem;
width: 18rem;
margin: 0 auto;
border-radius: 3px;
overflow: hidden;
}
div.loading-ui-overlay div.loading-ui-wrapper div.loading-ui-body div.loading-ui-progress div.loading-ui-progress-bar {
height: 100%;
background-color: #38a4f8;
transition: width .1s ease;
}
/* loading-ui light theme */
div.loading-ui-overlay.dark {
background-color: RGBA(0, 0, 0, 0.5);
}
div.loading-ui-overlay.dark div.loading-ui-wrapper div.loading-ui-body {
background-color: #5b626b;
color: #fff;
box-shadow: 0px 0px 13px 0px rgba(117, 117, 117, 0.44);
}
/* topbar */
div.loading-ui-overlay.topbar {
background-color: transparent !important;
}
div.loading-ui-overlay .loading-ui-topbar {
top: 0;
left: 0;
height: 5px;
position: fixed;
z-index: 666000666;
-webkit-transition:width 500ms ease-out, height 500ms ease-out;
-moz-transition:width 500ms ease-out, height 500ms ease-out;
-o-transition:width 500ms ease-out, height 500ms ease-out;
transition:width 500ms ease-out, height 500ms ease-out;
}