2014-05-12 20:08:19 +02:00
|
|
|
// Mixins
|
|
|
|
// --------------------------
|
|
|
|
|
|
|
|
@mixin fa-icon-rotate($degrees, $rotation) {
|
2014-06-06 14:29:32 +02:00
|
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
2014-05-12 20:08:19 +02:00
|
|
|
-webkit-transform: rotate($degrees);
|
|
|
|
-moz-transform: rotate($degrees);
|
|
|
|
-ms-transform: rotate($degrees);
|
|
|
|
-o-transform: rotate($degrees);
|
|
|
|
transform: rotate($degrees);
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
2014-06-06 14:29:32 +02:00
|
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
2014-05-12 20:08:19 +02:00
|
|
|
-webkit-transform: scale($horiz, $vert);
|
|
|
|
-moz-transform: scale($horiz, $vert);
|
|
|
|
-ms-transform: scale($horiz, $vert);
|
|
|
|
-o-transform: scale($horiz, $vert);
|
|
|
|
transform: scale($horiz, $vert);
|
|
|
|
}
|