This commit is contained in:
2018-12-18 18:37:47 +01:00
parent e955181216
commit 858bff0f81
155 changed files with 4539 additions and 10845 deletions
@@ -0,0 +1,35 @@
// Font Family
$font-family-default: "Raleway", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
$font-family-header: "Montserrat", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
$font-family-mono: "Inconsolata", monospace;
$font-family-serif: "Georgia", "Times", "Times New Roman", serif;
// @font-face
$Regular: "Montserrat-Regular";
$family: "montserrat";
$file-regular: "Montserrat-Regular";
$category: "sans-serif";
@mixin font-face($Regular, $file-regular, $family, $category:"") {
$filepath: "../fonts/" + $family + "/" + $file-regular;
@font-face {
font-family: "#{$Regular}";
src: url($filepath + ".eot");
src: url($filepath + ".eot?#iefix") format('embedded-opentype'),
url($filepath + ".woff") format('woff'),
url($filepath + ".ttf") format('truetype'),
url($filepath + ".svg#" + $Regular + "") format('svg');
}
%#{$Regular} {
font: {
@if $category != "" {
family: "#{$Regular}", #{$category};
}
@else {
family: "#{$Regular}";
weight: normal;
}
}
}
}
@@ -0,0 +1 @@
@include font-face($Regular, $file-regular, $family, $category);//1