Skip to content

Commit

Permalink
Revert "fix: remove museo sans and add manrope font"
Browse files Browse the repository at this point in the history
This reverts commit fd7b7aa.
  • Loading branch information
kennethkalmer committed Mar 14, 2024
1 parent 5777f79 commit 192b6c0
Show file tree
Hide file tree
Showing 11 changed files with 59 additions and 3 deletions.
Binary file added src/fonts/museosans/300/webfont.woff
Binary file not shown.
Binary file added src/fonts/museosans/300/webfont.woff2
Binary file not shown.
Binary file added src/fonts/museosans/500/webfont.woff
Binary file not shown.
Binary file added src/fonts/museosans/500/webfont.woff2
Binary file not shown.
Binary file added src/fonts/museosans/500italic/webfont.woff
Binary file not shown.
Binary file added src/fonts/museosans/500italic/webfont.woff2
Binary file not shown.
Binary file added src/fonts/museosans/700/webfont.woff
Binary file not shown.
Binary file added src/fonts/museosans/700/webfont.woff2
Binary file not shown.
Binary file added src/fonts/museosans/900/webfont.woff
Binary file not shown.
Binary file added src/fonts/museosans/900/webfont.woff2
Binary file not shown.
62 changes: 59 additions & 3 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,19 @@
}

body {
font-family: 'Manrope', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans',
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'ui-sans-serif', 'system-ui',
'-apple-system', sans-serif;
font-family:
'Museo Sans',
'Helvetica Neue',
Arial,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Open Sans',
sans-serif;
margin: 0;
font-weight: 300;
font-size: 17px;
Expand All @@ -59,6 +69,52 @@
padding-top: 24px;
}

@font-face {
font-family: 'Museo Sans';
font-weight: 300;
font-display: swap;
src:
url('../fonts/museosans/300/webfont.woff2') format('woff2'),
url('../fonts/museosans/300/webfont.woff') format('woff');
}

@font-face {
font-family: 'Museo Sans';
font-weight: 500;
font-display: swap;
src:
url('../fonts/museosans/500/webfont.woff2') format('woff2'),
url('../fonts/museosans/500/webfont.woff') format('woff');
}

@font-face {
font-family: 'Museo Sans';
font-weight: 500;
font-style: italic;
font-display: swap;
src:
url('../fonts/museosans/500italic/webfont.woff2') format('woff2'),
url('../fonts/museosans/500italic/webfont.woff') format('woff');
}

@font-face {
font-family: 'Museo Sans';
font-weight: 700;
font-display: swap;
src:
url('../fonts/museosans/700/webfont.woff2') format('woff2'),
url('../fonts/museosans/700/webfont.woff') format('woff');
}

@font-face {
font-family: 'Museo Sans';
font-weight: 900;
font-display: swap;
src:
url('../fonts/museosans/900/webfont.woff2') format('woff2'),
url('../fonts/museosans/900/webfont.woff') format('woff');
}

@font-face {
font-family: 'JetBrains Mono';
font-style: normal;
Expand Down

0 comments on commit 192b6c0

Please sign in to comment.