site-max/vendor/font-awesome/scss/_animated.scss

21 lines
300 B
SCSS
Raw Normal View History

2019-07-14 11:47:10 +02:00
// Animated Icons
2017-07-14 15:51:49 +02:00
// --------------------------
.#{$fa-css-prefix}-spin {
2019-07-14 11:47:10 +02:00
animation: fa-spin 2s infinite linear;
2017-07-14 15:51:49 +02:00
}
.#{$fa-css-prefix}-pulse {
2019-07-14 11:47:10 +02:00
animation: fa-spin 1s infinite steps(8);
2017-07-14 15:51:49 +02:00
}
@keyframes fa-spin {
0% {
2019-07-14 11:47:10 +02:00
transform: rotate(0deg);
2017-07-14 15:51:49 +02:00
}
2019-07-14 11:47:10 +02:00
2017-07-14 15:51:49 +02:00
100% {
2019-07-14 11:47:10 +02:00
transform: rotate(360deg);
2017-07-14 15:51:49 +02:00
}
}