From 7e49db5ddefe8c515b5f3931a5c701efaac33d91 Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Fri, 16 Dec 2022 17:45:03 -0600 Subject: change structure for new pyssg version --- live/static/font-awesome/less/_animated.less | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 live/static/font-awesome/less/_animated.less (limited to 'live/static/font-awesome/less/_animated.less') diff --git a/live/static/font-awesome/less/_animated.less b/live/static/font-awesome/less/_animated.less new file mode 100644 index 0000000..704ec95 --- /dev/null +++ b/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); + } +} -- cgit v1.2.3-54-g00ecf