poster/fonts/PT_Sans.scss

27 lines
1.2 KiB
SCSS

@mixin font-face($family, $local1, $local2, $rpath, $weight: normal, $style: normal) {
$path: "#{$rpath}";
@font-face {
font-family: $family;
font-weight: $weight;
font-style: $style;
src: url("#{$path}.eot");
src: local($local1), local($local2), url("#{$path}.eot?#iefix") format("embedded-opentype"), url("#{$path}.woff") format("woff"), url("#{$path}.ttf") format("truetype"), url("#{$path}.svg") format("svg");
}
}
@mixin font-face-normal($family, $local1, $local2, $rpath, $weight: normal, $style: normal) {
$path: "#{$rpath}";
@font-face {
font-family: $family;
src: url("#{$path}.eot");
src: local($local1), local($local2), url("#{$path}.eot?#iefix") format("embedded-opentype"), url("#{$path}.woff") format("woff"), url("#{$path}.ttf") format("truetype"), url("#{$path}.svg") format("svg");
}
}
@include font-face-normal("PT Sans", "PT Sans", "PT_Sans-Regular", "PT_Sans/PT_Sans-Regular");
@include font-face("PT Sans", "PT Sans Bold", "PT_Sans-Bold", "PT_Sans/PT_Sans-Bold", 700);
@include font-face("PT Sans", "PT Sans Italic", "PT_Sans-Italic", "PT_Sans/PT_Sans-Italic", 400, italic);
@include font-face("PT Sans", "PT Sans Bold Italic", "PT_Sans-BoldItalic", "PT_Sans/PT_Sans-BoldItalic", 700, italic);