TechShotgun/sass/modules/_typography.scss

75 lines
2.8 KiB
SCSS

// Font definition
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-MediumItalic-webfont.eot');
src: url('../fonts/Roboto-MediumItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-MediumItalic-webfont.woff') format('woff'),
url('../fonts/Roboto-MediumItalic-webfont.ttf') format('truetype'),
url('../fonts/Roboto-MediumItalic-webfont.svg#robotomedium_italic') format('svg');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Medium-webfont.eot');
src: url('../fonts/Roboto-Medium-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Medium-webfont.woff') format('woff'),
url('../fonts/Roboto-Medium-webfont.ttf') format('truetype'),
url('../fonts/Roboto-Medium-webfont.svg#robotomedium') format('svg');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-LightItalic-webfont.eot');
src: url('../fonts/Roboto-LightItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-LightItalic-webfont.woff') format('woff'),
url('../fonts/Roboto-LightItalic-webfont.ttf') format('truetype'),
url('../fonts/Roboto-LightItalic-webfont.svg#robotolight_italic') format('svg');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Light-webfont.eot');
src: url('../fonts/Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Light-webfont.woff') format('woff'),
url('../fonts/Roboto-Light-webfont.ttf') format('truetype'),
url('../fonts/Roboto-Light-webfont.svg#robotolight') format('svg');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-BlackItalic-webfont.eot');
src: url('../fonts/Roboto-BlackItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-BlackItalic-webfont.woff') format('woff'),
url('../fonts/Roboto-BlackItalic-webfont.ttf') format('truetype'),
url('../fonts/Roboto-BlackItalic-webfont.svg#robotoblack_italic') format('svg');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Black-webfont.eot');
src: url('../fonts/Roboto-Black-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Black-webfont.woff') format('woff'),
url('../fonts/Roboto-Black-webfont.ttf') format('truetype'),
url('../fonts/Roboto-Black-webfont.svg#robotoblack') format('svg');
font-weight: 900;
font-style: normal;
}
// Font Weights
$black: 900;
$medium: 500;
$light: 300;
// Font Variables
$roboto: "Roboto", "Calibri", "Arial", sans-serif;