summaryrefslogtreecommitdiff
path: root/xstatic/pkg/font_awesome/data/scss/_extras.scss
diff options
context:
space:
mode:
authorLiKai <li.kai@99cloud.net>2015-02-15 08:21:03 +0800
committerLiKai <li.kai@99cloud.net>2015-02-15 10:26:43 +0800
commit954d8de690cf4103a7517f7c9dab4e1107750d4c (patch)
treee418d812b5fb21f99413a53972dde4f353e5e8f3 /xstatic/pkg/font_awesome/data/scss/_extras.scss
parentc13aad1b95b1d84e73f2565a18a5a8e2bd2194a7 (diff)
downloadxstatic-font-awesome-954d8de690cf4103a7517f7c9dab4e1107750d4c.tar.gz
Version 4.3.04.3.0.0
Change-Id: I6f0a88742137af374f9058fabd96cd85a00f6eb4
Diffstat (limited to 'xstatic/pkg/font_awesome/data/scss/_extras.scss')
-rw-r--r--xstatic/pkg/font_awesome/data/scss/_extras.scss44
1 files changed, 0 insertions, 44 deletions
diff --git a/xstatic/pkg/font_awesome/data/scss/_extras.scss b/xstatic/pkg/font_awesome/data/scss/_extras.scss
deleted file mode 100644
index 93139c5..0000000
--- a/xstatic/pkg/font_awesome/data/scss/_extras.scss
+++ /dev/null
@@ -1,44 +0,0 @@
-/* EXTRAS
- * -------------------------- */
-
-/* Stacked and layered icon */
-
-/* Animated rotating icon */
-.#{$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); }
-}
-
-
-// Icon rotations & flipping
-// -------------------------
-
-.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
-.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
-.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
-
-.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
-.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }