Project

General

Profile

Download (297 Bytes) Statistics
| Branch: | Tag: | Revision:
1
// Animated Icons
2
// --------------------------
3

    
4
.@{fa-css-prefix}-spin {
5
  animation: fa-spin 2s infinite linear;
6
}
7

    
8
.@{fa-css-prefix}-pulse {
9
  animation: fa-spin 1s infinite steps(8);
10
}
11

    
12
@keyframes fa-spin {
13
  0% {
14
    transform: rotate(0deg);
15
  }
16
  100% {
17
    transform: rotate(360deg);
18
  }
19
}
(1-1/18)