2013-06-12 12:32:47 +08:00
|
|
|
/* EXTRAS
|
|
|
|
* -------------------------- */
|
|
|
|
|
|
|
|
/* Stacked and layered icon */
|
2013-10-17 00:16:39 +08:00
|
|
|
.fa-icon-stack();
|
2013-06-12 12:32:47 +08:00
|
|
|
|
|
|
|
/* Animated rotating icon */
|
2013-10-21 01:07:55 +08:00
|
|
|
.@{fa-css-prefix}-spin {
|
2013-08-21 19:18:37 +08:00
|
|
|
-webkit-animation: spin 2s infinite linear;
|
2013-06-12 12:32:47 +08:00
|
|
|
-moz-animation: spin 2s infinite linear;
|
|
|
|
-o-animation: spin 2s infinite linear;
|
|
|
|
animation: spin 2s infinite linear;
|
|
|
|
}
|
2013-06-15 03:10:15 +08:00
|
|
|
|
2013-06-12 12:32:47 +08:00
|
|
|
@-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); }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-02 08:58:36 +08:00
|
|
|
// Icon rotations & flipping
|
|
|
|
// -------------------------
|
2013-06-12 12:32:47 +08:00
|
|
|
|
2013-10-21 01:07:55 +08:00
|
|
|
.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
|
|
|
|
.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
|
|
|
|
.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
|
2013-06-12 12:32:47 +08:00
|
|
|
|
2013-10-21 01:07:55 +08:00
|
|
|
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1); }
|
|
|
|
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1); }
|