-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathspinner.css
More file actions
69 lines (63 loc) · 1.79 KB
/
Copy pathspinner.css
File metadata and controls
69 lines (63 loc) · 1.79 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
.algo-spinner {
position: relative;
top: 10px;
left: 8px;
visibility: hidden;
}
.aspinner {
display: inline-block;
height: 22px;
width: 22px;
margin: 2px;
position: relative;
-webkit-animation: rotation 1.0s infinite linear;
-moz-animation: rotation 1.0s infinite linear;
-o-animation: rotation 1.0s infinite linear;
animation: rotation 1.0s infinite linear;
border-top: 4px solid rgba(174,174,174,.8);
border-right: 4px solid rgba(174,174,174,.2);
border-bottom: 4px solid rgba(174,174,174,.2);
border-left: 4px solid rgba(174,174,174,.2);
border-radius: 100%;
}
.spinme {
-webkit-animation: rotation 1.0s infinite linear;
-moz-animation: rotation 1.0s infinite linear;
-o-animation: rotation 1.0s infinite linear;
animation: rotation 1.0s infinite linear;
}
@-webkit-keyframes rotation {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
from {-moz-transform: rotate(0deg);}
to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
from {-o-transform: rotate(0deg);}
to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
from {transform: rotate(0deg);}
to {transform: rotate(359deg);}
}
/* FADE IN / FADE OUT */
.fade-hide, .fade-show {
-webkit-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
-moz-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
-o-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
}
.fade-hide {
opacity: 1;
}
.fade-hide.fade-hide-active {
opacity: 0;
}
.fade-show {
opacity: 0;
}
.fade-show.fade-show-active {
opacity: 1;
}