_bordered-pulled.scss
9 years ago
_core.scss
3 years ago
_fixed-width.scss
9 years ago
_icons.scss
9 years ago
_larger.scss
9 years ago
_list.scss
9 years ago
_mixins.scss
9 years ago
_path.scss
9 years ago
_rotated-flipped.scss
9 years ago
_spinning.scss
9 years ago
_stacked.scss
9 years ago
_variables.scss
9 years ago
font-awesome.scss
9 years ago
_mixins.scss
21 lines
| 1 | // Mixins |
| 2 | // -------------------------- |
| 3 | |
| 4 | @mixin fa-icon-rotate($degrees, $rotation) { |
| 5 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); |
| 6 | -webkit-transform: rotate($degrees); |
| 7 | -moz-transform: rotate($degrees); |
| 8 | -ms-transform: rotate($degrees); |
| 9 | -o-transform: rotate($degrees); |
| 10 | transform: rotate($degrees); |
| 11 | } |
| 12 | |
| 13 | @mixin fa-icon-flip($horiz, $vert, $rotation) { |
| 14 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); |
| 15 | -webkit-transform: scale($horiz, $vert); |
| 16 | -moz-transform: scale($horiz, $vert); |
| 17 | -ms-transform: scale($horiz, $vert); |
| 18 | -o-transform: scale($horiz, $vert); |
| 19 | transform: scale($horiz, $vert); |
| 20 | } |
| 21 |