scottjohnson.pro/assets/plugins/font-awesome/scss/_animated.scss

21 lines
300 B
SCSS
Raw Permalink Normal View History

2018-07-25 09:34:10 -04:00
// Animated Icons
2016-07-29 00:47:42 -04:00
// --------------------------
.#{$fa-css-prefix}-spin {
2018-07-25 09:34:10 -04:00
animation: fa-spin 2s infinite linear;
2016-07-29 00:47:42 -04:00
}
.#{$fa-css-prefix}-pulse {
2018-07-25 09:34:10 -04:00
animation: fa-spin 1s infinite steps(8);
2016-07-29 00:47:42 -04:00
}
@keyframes fa-spin {
0% {
2018-07-25 09:34:10 -04:00
transform: rotate(0deg);
2016-07-29 00:47:42 -04:00
}
2018-07-25 09:34:10 -04:00
2016-07-29 00:47:42 -04:00
100% {
2018-07-25 09:34:10 -04:00
transform: rotate(360deg);
2016-07-29 00:47:42 -04:00
}
}