1
mirror of https://github.com/jakejarvis/spoons.git synced 2025-10-22 20:34:29 -04:00

move webfont css into separate file

This commit is contained in:
2017-07-16 17:47:17 -04:00
parent e67d12e290
commit cc1257e3db
3 changed files with 25 additions and 25 deletions

View File

@@ -0,0 +1,23 @@
@font-face {
font-family: 'Proxima Nova';
src: url('../fonts/proximanova-regular-webfont.eot');
src: url('../fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/proximanova-regular-webfont.woff') format('woff'),
url('../fonts/proximanova-regular-webfont.ttf') format('truetype'),
url('../fonts/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Proxima Nova';
src: url('../fonts/proximanova-semibold-webfont.eot');
src: url('../fonts/proximanova-semibold-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/proximanova-semibold-webfont.woff') format('woff'),
url('../fonts/proximanova-semibold-webfont.ttf') format('truetype'),
url('../fonts/proximanova-semibold-webfont.svg#proxima_nova_rgsemibold') format('svg');
font-weight: bold;
font-style: normal;
}
* {
font-family: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

View File

@@ -1,27 +1,3 @@
@font-face {
font-family: 'Proxima Nova';
src: url('../fonts/proximanova-regular-webfont.eot');
src: url('../fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/proximanova-regular-webfont.woff') format('woff'),
url('../fonts/proximanova-regular-webfont.ttf') format('truetype'),
url('../fonts/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Proxima Nova';
src: url('../fonts/proximanova-semibold-webfont.eot');
src: url('../fonts/proximanova-semibold-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/proximanova-semibold-webfont.woff') format('woff'),
url('../fonts/proximanova-semibold-webfont.ttf') format('truetype'),
url('../fonts/proximanova-semibold-webfont.svg#proxima_nova_rgsemibold') format('svg');
font-weight: bold;
font-style: normal;
}
* {
font-family: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
body {
padding: 20px 0px !important;
font-size: 18px;