diff options
Diffstat (limited to 'themes/docsy/assets/vendor/Font-Awesome/less/_animated.less')
-rw-r--r-- | themes/docsy/assets/vendor/Font-Awesome/less/_animated.less | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/themes/docsy/assets/vendor/Font-Awesome/less/_animated.less b/themes/docsy/assets/vendor/Font-Awesome/less/_animated.less new file mode 100644 index 0000000..704ec95 --- /dev/null +++ b/themes/docsy/assets/vendor/Font-Awesome/less/_animated.less @@ -0,0 +1,19 @@ +// Animated Icons +// -------------------------- + +.@{fa-css-prefix}-spin { + animation: fa-spin 2s infinite linear; +} + +.@{fa-css-prefix}-pulse { + animation: fa-spin 1s infinite steps(8); +} + +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} |