2013-10-22 15:55:08 -04:00
|
|
|
// Spinning Icons
|
|
|
|
// --------------------------
|
2013-05-07 15:05:08 -04:00
|
|
|
|
2013-10-20 13:07:55 -04:00
|
|
|
.@{fa-css-prefix}-spin {
|
2013-08-21 13:18:37 +02:00
|
|
|
-webkit-animation: spin 2s infinite linear;
|
2013-05-07 15:05:08 -04:00
|
|
|
-moz-animation: spin 2s infinite linear;
|
|
|
|
-o-animation: spin 2s infinite linear;
|
|
|
|
animation: spin 2s infinite linear;
|
|
|
|
}
|
2013-06-14 16:57:00 -04:00
|
|
|
|
2013-05-07 15:05:08 -04:00
|
|
|
@-moz-keyframes spin {
|
|
|
|
0% { -moz-transform: rotate(0deg); }
|
|
|
|
100% { -moz-transform: rotate(359deg); }
|
|
|
|
}
|
|
|
|
@-webkit-keyframes spin {
|
|
|
|
0% { -webkit-transform: rotate(0deg); }
|
|
|
|
100% { -webkit-transform: rotate(359deg); }
|
|
|
|
}
|
|
|
|
@-o-keyframes spin {
|
|
|
|
0% { -o-transform: rotate(0deg); }
|
|
|
|
100% { -o-transform: rotate(359deg); }
|
|
|
|
}
|
|
|
|
@keyframes spin {
|
|
|
|
0% { transform: rotate(0deg); }
|
|
|
|
100% { transform: rotate(359deg); }
|
|
|
|
}
|