-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommon.css
More file actions
53 lines (46 loc) · 966 Bytes
/
common.css
File metadata and controls
53 lines (46 loc) · 966 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
48
49
50
51
52
53
.not-loaded {
display: none;
}
.loading {
width: 100px;
height: 35px;
padding-top: 5px;
margin: 16px auto;
text-align: center;
overflow: hidden;
display: none;
}
.loading.not-loaded {
display: block;
}
.loading div {
display: inline-block;
margin: 0 1px;
width: 15px;
height: 15px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background-color: #ffc107;
-webkit-animation: loading 1.1s infinite alternate;
-moz-animation: loading 1.1s infinite alternate; animation: loading 1.1s infinite alternate;
}
.loading .first {
-webkit-animation-delay: 0.2s;
-moz-animation-delay: 0.2s;
animation-delay: 0.2s;
}
.loading .second {
-webkit-animation-delay: 0.4s;
-moz-animation-delay: 0.4s;
animation-delay: 0.4s;
}
.loading .third {
-webkit-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
animation-delay: 0.6s;
}
@keyframes loading {
from {height: 15px;}
to {height: 30px;}
}