mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
3f62df22e0
Former-commit-id: 0315dfe5b07e78efaa6c85fb46b58b0da67fe2b4 [formerly 2d1404e498c6a251f9c9864271668b38462977fd] [formerly a4fb1029f010868787a32601fa65ef7c0c76c10d [formerly 774b0209df
]]
Former-commit-id: 29b6343f9bc02110036abb274eb7e9f02df4c885 [formerly ed2d98f9788886396059a91a091a7aed83192862]
Former-commit-id: 91e9ae96807ba1aec0ff0f4abba6ae826b389c48
26 lines
906 B
SCSS
26 lines
906 B
SCSS
// Mixins
|
|
// --------------------------
|
|
|
|
@mixin fa-icon() {
|
|
display: inline-block;
|
|
font: normal normal normal 14px/1 FontAwesome; // shortening font declaration
|
|
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
|
text-rendering: auto; // optimizelegibility throws things off #1094
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
@mixin fa-icon-rotate($degrees, $rotation) {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
|
-webkit-transform: rotate($degrees);
|
|
-ms-transform: rotate($degrees);
|
|
transform: rotate($degrees);
|
|
}
|
|
|
|
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
|
-webkit-transform: scale($horiz, $vert);
|
|
-ms-transform: scale($horiz, $vert);
|
|
transform: scale($horiz, $vert);
|
|
}
|