blog/sass/_fonts.scss

87 lines
No EOL
1.9 KiB
SCSS

@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-B.ttf") format(truetype);
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-BI.ttf") format(truetype);
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-R.ttf") format(truetype);
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-RI.ttf") format(truetype);
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-M.ttf") format(truetype);
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-MI.ttf") format(truetype);
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-L.ttf") format(truetype);
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: "Ubuntu";
src: url("fonts/Ubuntu/Ubuntu-LI.ttf") format(truetype);
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: "Ubuntu Mono";
src: url("fonts/Ubuntu/UbuntuMono-B.ttf") format(truetype);
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Ubuntu Mono";
src: url("fonts/Ubuntu/UbuntuMono-BI.ttf") format(truetype);
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: "Ubuntu Mono";
src: url("fonts/Ubuntu/UbuntuMono-R.ttf") format(truetype);
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Ubuntu Mono";
src: url("fonts/Ubuntu/UbuntuMono-RI.ttf") format(truetype);
font-weight: 400;
font-style: italic;
}
$text-font: "Ubuntu", Helvetica, sans-serif;
$title-font: "Ubuntu", Helvetica, sans-serif;
$mono-font: "Ubuntu Mono", monospace;