Merge pull request #2 from styfle/inter-font

Add inter font
This commit is contained in:
Steven 2019-01-09 09:00:50 -05:00 committed by GitHub
commit 0e75d1953f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -2,6 +2,12 @@
const logo = 'https://assets.zeit.co/image/upload/front/assets/design/now-black.svg';
const css = `
@import url('https://rsms.me/inter/inter-ui.css');
html { font-family: 'Inter UI', sans-serif; }
@supports (font-variation-settings: normal) {
html { font-family: 'Inter UI var alt', sans-serif; }
}
body {
background: white;
background-image: radial-gradient(lightgray 5%, transparent 0);
@ -23,7 +29,6 @@ body {
}
.heading {
font-family: "SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
font-size: 75px;
font-weight: bold;
}`;