22 lines
813 B
SCSS
22 lines
813 B
SCSS
@font-face {
|
|
font-family: 'worksans-medium';
|
|
src: url('../fonts/WorkSans-Medium.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'worksans-mediumitalic';
|
|
src: url('../fonts/WorkSans-MediumItalic.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
|
|
@mixin font-worksans-medium {
|
|
font-face: worksans-medium, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
font-weight: normal;
|
|
}
|
|
@mixin font-worksans-mediumitalic {
|
|
font-face: worksans-mediumitalic, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
font-weight: normal;
|
|
}
|