diff options
Diffstat (limited to 'pyssg.xyz/live/static/font-awesome/less/_animated.less')
-rw-r--r-- | pyssg.xyz/live/static/font-awesome/less/_animated.less | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pyssg.xyz/live/static/font-awesome/less/_animated.less b/pyssg.xyz/live/static/font-awesome/less/_animated.less new file mode 100644 index 0000000..704ec95 --- /dev/null +++ b/pyssg.xyz/live/static/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); + } +} |