2013-10-16 13:46:28 -04:00
|
|
|
---
|
|
|
|
---
|
2013-05-16 09:19:04 +02:00
|
|
|
// Mixins
|
2013-06-12 10:54:30 -04:00
|
|
|
// --------------------------
|
2013-05-16 09:19:04 +02:00
|
|
|
|
2014-08-24 11:42:24 -05:00
|
|
|
@mixin fa-icon() {
|
2014-12-28 15:27:45 +01:00
|
|
|
{% include code/core.scss %}
|
2014-08-24 11:42:24 -05:00
|
|
|
}
|
|
|
|
|
2013-10-20 13:43:24 -04:00
|
|
|
@mixin fa-icon-rotate($degrees, $rotation) {
|
2013-11-17 23:01:31 +01:00
|
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
2013-10-16 13:46:28 -04:00
|
|
|
-webkit-transform: rotate($degrees);
|
|
|
|
-ms-transform: rotate($degrees);
|
|
|
|
transform: rotate($degrees);
|
2013-06-12 10:33:11 -04:00
|
|
|
}
|
|
|
|
|
2013-10-23 00:24:08 -04:00
|
|
|
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
2013-11-17 23:01:31 +01:00
|
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
2013-10-16 13:46:28 -04:00
|
|
|
-webkit-transform: scale($horiz, $vert);
|
|
|
|
-ms-transform: scale($horiz, $vert);
|
|
|
|
transform: scale($horiz, $vert);
|
2013-06-12 10:33:11 -04:00
|
|
|
}
|