2013-10-23 12:24:08 +08:00
|
|
|
// Spinning Icons
|
|
|
|
// --------------------------
|
2013-05-16 15:19:04 +08:00
|
|
|
|
2013-10-21 01:43:24 +08:00
|
|
|
.#{$fa-css-prefix}-spin {
|
2013-08-21 19:18:37 +08:00
|
|
|
-webkit-animation: spin 2s infinite linear;
|
2013-06-12 22:51:29 +08:00
|
|
|
-moz-animation: spin 2s infinite linear;
|
|
|
|
-o-animation: spin 2s infinite linear;
|
|
|
|
animation: spin 2s infinite linear;
|
|
|
|
}
|
2013-06-15 04:57:00 +08:00
|
|
|
|
2013-05-16 15:19:04 +08:00
|
|
|
@-moz-keyframes spin {
|
2013-06-12 22:51:29 +08:00
|
|
|
0% { -moz-transform: rotate(0deg); }
|
|
|
|
100% { -moz-transform: rotate(359deg); }
|
2013-05-16 15:19:04 +08:00
|
|
|
}
|
|
|
|
@-webkit-keyframes spin {
|
2013-06-12 22:51:29 +08:00
|
|
|
0% { -webkit-transform: rotate(0deg); }
|
|
|
|
100% { -webkit-transform: rotate(359deg); }
|
2013-05-16 15:19:04 +08:00
|
|
|
}
|
|
|
|
@-o-keyframes spin {
|
2013-06-12 22:51:29 +08:00
|
|
|
0% { -o-transform: rotate(0deg); }
|
|
|
|
100% { -o-transform: rotate(359deg); }
|
2013-05-16 15:19:04 +08:00
|
|
|
}
|
|
|
|
@-ms-keyframes spin {
|
2013-06-12 22:51:29 +08:00
|
|
|
0% { -ms-transform: rotate(0deg); }
|
|
|
|
100% { -ms-transform: rotate(359deg); }
|
2013-05-16 15:19:04 +08:00
|
|
|
}
|
|
|
|
@keyframes spin {
|
2013-06-12 22:51:29 +08:00
|
|
|
0% { transform: rotate(0deg); }
|
|
|
|
100% { transform: rotate(359deg); }
|
2013-05-16 15:19:04 +08:00
|
|
|
}
|