source: CLARIN_style/libs/font-awesome-4.2.0/less/spinning.less @ 5855

Last change on this file since 5855 was 5855, checked in by Sander Maijers, 10 years ago
  • Correct previous commit adding font-awesome library to CLARIN style: add complete, versioned

library.

File size: 582 bytes
Line 
1// Spinning Icons
2// --------------------------
3
4.@{fa-css-prefix}-spin {
5  -webkit-animation: fa-spin 2s infinite linear;
6          animation: fa-spin 2s infinite linear;
7}
8
9@-webkit-keyframes fa-spin {
10  0% {
11    -webkit-transform: rotate(0deg);
12            transform: rotate(0deg);
13  }
14  100% {
15    -webkit-transform: rotate(359deg);
16            transform: rotate(359deg);
17  }
18}
19
20@keyframes fa-spin {
21  0% {
22    -webkit-transform: rotate(0deg);
23            transform: rotate(0deg);
24  }
25  100% {
26    -webkit-transform: rotate(359deg);
27            transform: rotate(359deg);
28  }
29}
Note: See TracBrowser for help on using the repository browser.