mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-11-20 11:14:28 +00:00
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
/* EXTRAS
|
|
* -------------------------- */
|
|
|
|
/* Stacked and layered icon */
|
|
.icon-stack();
|
|
|
|
/* Animated rotating icon */
|
|
.fa-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-rotate-90 { .rotate(90deg, 1); }
|
|
.fa-rotate-180 { .rotate(180deg, 2); }
|
|
.fa-rotate-270 { .rotate(270deg, 3); }
|
|
|
|
.fa-flip-horizontal { .flip(-1, 1); }
|
|
.fa-flip-vertical { .flip(1, -1); }
|