may 2 update - new icons, html docs, yaml spec

This commit is contained in:
Dave Gandy
2017-05-02 14:20:37 -04:00
parent e4d6cff662
commit e63ff47fcc
358 changed files with 8042 additions and 45 deletions

View File

@@ -0,0 +1,25 @@
// Mixins
// --------------------------
@mixin fal-icon() {
display: inline-block;
font: normal normal normal #{$fal-font-size-base}/#{$fal-line-height-base} "Fa5Light";
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@mixin fal-icon-rotate($degrees, $rotation) {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
-webkit-transform: rotate($degrees);
-ms-transform: rotate($degrees);
transform: rotate($degrees);
}
@mixin fal-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);
}