Mercurial > repos > azomics > clustergrammer_flow
comparison css/font-awesome/scss/_spinning.scss @ 0:fee56ee2f7ac draft
"planemo upload for repository https://github.com/ImmPortDB/immport-galaxy-tools/tree/master/flowtools/clustergrammer_flow commit b11dfcf10d287c1da91ffb1d5d0148c7f8f61356"
author | azomics |
---|---|
date | Fri, 31 Jul 2020 19:06:45 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:fee56ee2f7ac |
---|---|
1 // Spinning Icons | |
2 // -------------------------- | |
3 | |
4 .#{$fa-css-prefix}-spin { | |
5 -webkit-animation: spin 2s infinite linear; | |
6 -moz-animation: spin 2s infinite linear; | |
7 -o-animation: spin 2s infinite linear; | |
8 animation: spin 2s infinite linear; | |
9 } | |
10 | |
11 @-moz-keyframes spin { | |
12 0% { -moz-transform: rotate(0deg); } | |
13 100% { -moz-transform: rotate(359deg); } | |
14 } | |
15 @-webkit-keyframes spin { | |
16 0% { -webkit-transform: rotate(0deg); } | |
17 100% { -webkit-transform: rotate(359deg); } | |
18 } | |
19 @-o-keyframes spin { | |
20 0% { -o-transform: rotate(0deg); } | |
21 100% { -o-transform: rotate(359deg); } | |
22 } | |
23 @keyframes spin { | |
24 0% { | |
25 -webkit-transform: rotate(0deg); | |
26 transform: rotate(0deg); | |
27 } | |
28 100% { | |
29 -webkit-transform: rotate(359deg); | |
30 transform: rotate(359deg); | |
31 } | |
32 } |