mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-29 07:00:29 -04:00
25 lines
820 B
SCSS
25 lines
820 B
SCSS
@charset "UTF-8";
|
|
|
|
// Web fonts
|
|
$webfont-sans: "Inter";
|
|
$webfont-sans-variable: "Inter var";
|
|
$webfont-mono: "Hack";
|
|
|
|
// System fonts
|
|
// https://markdotto.com/2018/02/07/github-system-fonts/
|
|
$system-fonts-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
|
|
"Segoe UI Emoji", "Segoe UI Symbol";
|
|
$system-fonts-monospace: "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", "Courier", monospace;
|
|
|
|
$font-stack-static: $webfont-sans, $system-fonts-sans;
|
|
$font-stack-var: $webfont-sans-variable, $system-fonts-sans;
|
|
$font-stack-mono: $webfont-mono, $system-fonts-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;
|