From e3c672f4648997dbe00624e09c63c990a8ea3596 Mon Sep 17 00:00:00 2001 From: pdp8 Date: Mon, 22 Aug 2022 00:52:15 +0200 Subject: audio and video rendering, Fork-Awesome-1.2.0 included --- snippets/Fork-Awesome-1.2.0/scss/_animated.scss | 34 +++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 snippets/Fork-Awesome-1.2.0/scss/_animated.scss (limited to 'snippets/Fork-Awesome-1.2.0/scss/_animated.scss') diff --git a/snippets/Fork-Awesome-1.2.0/scss/_animated.scss b/snippets/Fork-Awesome-1.2.0/scss/_animated.scss new file mode 100644 index 0000000..543d5b3 --- /dev/null +++ b/snippets/Fork-Awesome-1.2.0/scss/_animated.scss @@ -0,0 +1,34 @@ +// Spinning Icons +// -------------------------- + +.#{$fa-css-prefix}-spin { + -webkit-animation: #{$fa-css-prefix}-spin 2s infinite linear; + animation: #{$fa-css-prefix}-spin 2s infinite linear; +} + +.#{$fa-css-prefix}-pulse { + -webkit-animation: #{$fa-css-prefix}-spin 1s infinite steps(8); + animation: #{$fa-css-prefix}-spin 1s infinite steps(8); +} + +@-webkit-keyframes #{$fa-css-prefix}-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes #{$fa-css-prefix}-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} -- cgit v1.2.3