diff options
Diffstat (limited to 'themes/hugo-coder/assets/scss/fork-awesome/_animated.scss')
m--------- | themes/hugo-coder | 0 | ||||
-rw-r--r-- | themes/hugo-coder/assets/scss/fork-awesome/_animated.scss | 34 |
2 files changed, 34 insertions, 0 deletions
diff --git a/themes/hugo-coder b/themes/hugo-coder deleted file mode 160000 | |||
Subproject 55b2a150f990bc56364dba347bc9acc6aab07be | |||
diff --git a/themes/hugo-coder/assets/scss/fork-awesome/_animated.scss b/themes/hugo-coder/assets/scss/fork-awesome/_animated.scss new file mode 100644 index 0000000..543d5b3 --- /dev/null +++ b/themes/hugo-coder/assets/scss/fork-awesome/_animated.scss | |||
@@ -0,0 +1,34 @@ | |||
1 | // Spinning Icons | ||
2 | // -------------------------- | ||
3 | |||
4 | .#{$fa-css-prefix}-spin { | ||
5 | -webkit-animation: #{$fa-css-prefix}-spin 2s infinite linear; | ||
6 | animation: #{$fa-css-prefix}-spin 2s infinite linear; | ||
7 | } | ||
8 | |||
9 | .#{$fa-css-prefix}-pulse { | ||
10 | -webkit-animation: #{$fa-css-prefix}-spin 1s infinite steps(8); | ||
11 | animation: #{$fa-css-prefix}-spin 1s infinite steps(8); | ||
12 | } | ||
13 | |||
14 | @-webkit-keyframes #{$fa-css-prefix}-spin { | ||
15 | 0% { | ||
16 | -webkit-transform: rotate(0deg); | ||
17 | transform: rotate(0deg); | ||
18 | } | ||
19 | 100% { | ||
20 | -webkit-transform: rotate(359deg); | ||
21 | transform: rotate(359deg); | ||
22 | } | ||
23 | } | ||
24 | |||
25 | @keyframes #{$fa-css-prefix}-spin { | ||
26 | 0% { | ||
27 | -webkit-transform: rotate(0deg); | ||
28 | transform: rotate(0deg); | ||
29 | } | ||
30 | 100% { | ||
31 | -webkit-transform: rotate(359deg); | ||
32 | transform: rotate(359deg); | ||
33 | } | ||
34 | } | ||