Fonts: remove .woff (since css only loads woff2 anyways), extrabold, heavy

This commit is contained in:
Tamius Han 2020-03-10 20:17:17 +01:00
parent 6e6b3522fe
commit fe72a4fdec
26 changed files with 2 additions and 35 deletions

1
.gitignore vendored
View File

@ -4,6 +4,7 @@ build/
/*.log
/dist*
/uw-git_keys
/untracked-assets
*.pem

View File

@ -76,9 +76,6 @@
font-style: italic;
}
@font-face {
font-family: 'overpass';
src: url('../../fonts/overpass-webfont/overpass-bold.woff2') format('woff2');
@ -91,35 +88,4 @@
src: url('../../fonts/overpass-webfont/overpass-bold-italic.woff2') format('woff2');
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: 'overpass';
src: url('../../fonts/overpass-webfont/overpass-extrabold.woff2') format('woff2');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'overpass';
src: url('../../fonts/overpass-webfont/overpass-extrabold-italic.woff2') format('woff2');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'overpass';
src: url('../../fonts/overpass-webfont/overpass-heavy.woff2') format('woff2');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'overpass';
src: url('../../fonts/overpass-webfont/overpass-heavy-italic.woff2') format('woff2');
font-weight: 900;
font-style: italic;
}
}