diff options
| author | oweissbarth | 2014-06-05 23:06:55 +0200 |
|---|---|---|
| committer | oweissbarth | 2014-06-05 23:06:55 +0200 |
| commit | 6c2bc2f4f0e6327ec19df0c06d931c10be0ff1e1 (patch) | |
| tree | 940f916d731579f40a76547c54a6a5508aae5283 /www/static/font-awesome/scss/_spinning.scss | |
| parent | f92eea258d3274bfe0a98530f4f2425d6aa0d9bf (diff) | |
| download | files.iamfabulous.de-6c2bc2f4f0e6327ec19df0c06d931c10be0ff1e1.tar.gz | |
now using font-awesome
Diffstat (limited to 'www/static/font-awesome/scss/_spinning.scss')
| -rwxr-xr-x | www/static/font-awesome/scss/_spinning.scss | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/www/static/font-awesome/scss/_spinning.scss b/www/static/font-awesome/scss/_spinning.scss new file mode 100755 index 0000000..ba1e4f1 --- /dev/null +++ b/www/static/font-awesome/scss/_spinning.scss @@ -0,0 +1,30 @@ +// Spinning Icons +// -------------------------- + +.#{$fa-css-prefix}-spin { + -webkit-animation: spin 2s infinite linear; + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; +} + +@-moz-keyframes spin { + 0% { -moz-transform: rotate(0deg); } + 100% { -moz-transform: rotate(359deg); } +} +@-webkit-keyframes spin { + 0% { -webkit-transform: rotate(0deg); } + 100% { -webkit-transform: rotate(359deg); } +} +@-o-keyframes spin { + 0% { -o-transform: rotate(0deg); } + 100% { -o-transform: rotate(359deg); } +} +@-ms-keyframes spin { + 0% { -ms-transform: rotate(0deg); } + 100% { -ms-transform: rotate(359deg); } +} +@keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(359deg); } +} |
