Fork-Awesome/scss/_mixins.scss

17 lines
543 B
SCSS
Raw Normal View History

// Mixins
// --------------------------
2013-10-16 19:46:28 +02:00
@mixin fa-icon-rotate($degrees, $rotation) {
2013-11-18 10:16:30 +01:00
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
2013-10-16 19:46:28 +02:00
-webkit-transform: rotate($degrees);
-ms-transform: rotate($degrees);
transform: rotate($degrees);
2013-06-12 16:33:11 +02:00
}
@mixin fa-icon-flip($horiz, $vert, $rotation) {
2013-11-18 10:16:30 +01:00
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
2013-10-16 19:46:28 +02:00
-webkit-transform: scale($horiz, $vert);
-ms-transform: scale($horiz, $vert);
transform: scale($horiz, $vert);
2013-06-12 16:33:11 +02:00
}