diff options
Diffstat (limited to 'website/static/font-awesome/scss/_spinning.scss')
-rw-r--r-- | website/static/font-awesome/scss/_spinning.scss | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/website/static/font-awesome/scss/_spinning.scss b/website/static/font-awesome/scss/_spinning.scss new file mode 100644 index 0000000..002c5d5 --- /dev/null +++ b/website/static/font-awesome/scss/_spinning.scss @@ -0,0 +1,29 @@ +// Spinning Icons +// -------------------------- + +.#{$fa-css-prefix}-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} |