-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_icon-animations.scss
46 lines (38 loc) · 1.12 KB
/
_icon-animations.scss
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
/*
* * * * * * * * * * * * * * * * * * *
* ICON ANIMATIONS
* * * * * * * * * * * * * * * * * * *
*/
.spin-the-spinner {
display: inline-block;
-webkit-animation: spin 1.35s linear infinite;
-moz-animation: spin 1.35s linear infinite;
-ms-animation: spin 1.35s linear infinite;
-o-animation: spin 1.35s linear infinite;
animation: spin 1.35s linear infinite;
}
@-webkit-keyframes spin {
from { -webkit-transform: rotate(0deg); }
50% { -webkit-transform: rotate(180deg); }
to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes spin {
from { -moz-transform: rotate(0deg); }
50% { -moz-transform: rotate(180deg); }
to { -moz-transform: rotate(360deg); }
}
@-ms-keyframes spin {
from { -ms-transform: rotate(0deg); }
50% { -ms-transform: rotate(180deg); }
to { -ms-transform: rotate(360deg); }
}
@-o-keyframes spin {
from { -o-transform: rotate(0deg); }
50% { -o-transform: rotate(180deg); }
to { -o-transform: rotate(360deg); }
}
@keyframes spin {
from { transform: rotate(0deg); }
50% { transform: rotate(180deg); }
to { transform: rotate(360deg); }
}