1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 08:18:28 -04:00
jarv.is/assets/sass/abstracts/_settings.scss
Jake Jarvis da1743cf2d
add variable Inter fonts
current faces/files kept as a fallback. also switched to Google-hosted fonts on AMP pages (might as well...)
2020-07-22 16:19:24 -04:00

22 lines
823 B
SCSS

@charset "UTF-8";
// Web fonts
$webfont-sans: "Inter", sans-serif;
$webfont-sans-variable: "Inter var";
$webfont-mono: "Hack", monospace;
// System fonts
// https://markdotto.com/2018/02/07/github-system-fonts/
$system-fonts: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
"Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
$system-fonts-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
$system-fonts-monospace: "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", "Courier", monospace;
// Width at which to switch to mobile styles
$responsive-width: 830px;
// Fancy link underline settings
$link-underline-opacity: 40%;
$link-underline-size: 2px;
$link-opacity-color: #ffffff;