-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathangular-loading.css
More file actions
47 lines (40 loc) · 829 Bytes
/
angular-loading.css
File metadata and controls
47 lines (40 loc) · 829 Bytes
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
[dw-loading] {
position: relative;
}
.dw-loading {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
text-align: center;
display: none;
}
.dw-loading:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
.dw-loading.dw-loading-active {
display: block;
}
.dw-loading.dw-loading-overlay {
background-color: rgba(255, 255, 255, .7);
z-index: 9999;
}
.dw-loading > .dw-loading-body {
display: inline-block;
vertical-align: middle;
position: relative;
}
.dw-loading > .dw-loading-body > .dw-loading-spinner {
position: relative;
}
.dw-loading > .dw-loading-body > .dw-loading-text {
position: relative;
top: 25px;
font-weight: bold;
font-size: 11px;
text-shadow: 0 0 2px rgb(255, 255, 255);
}