1
0
mirror of https://github.com/Mikaela/cv.git synced 2024-11-22 08:29:24 +01:00

css: copy fonts from mikaela.github.io

This commit is contained in:
Aminda Suomalainen 2024-07-30 11:34:57 +03:00
parent b40bd30f01
commit ed91a5c0f0
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q

View File

@ -4,20 +4,22 @@
@charset "utf-8";
// Our variables
$serif-font-family: ui-serif, "Liberation Serif", Tinos, "Times New Roman",
serif, emoji;
$sans-serif-font-family: ui-sans-serif, "Liberation Sans", "Arimo", "Arial",
sans-serif;
$monospace-font-family: ui-monospace, "Liberation Mono", Cousine,
"Courier New", monospace, emoji;
// Must be in the end or undefined error.
$base-font-family: $serif-font-family;
// Our font definitions. I know system-ui is generally sans-serif, but I
// consider that lesser evil than not letting the client OS choose its
// preferred font.
$serif-font-family: ui-serif, system-ui, serif, "Noto Emoji",
"Noto Color Emoji", emoji;
$sans-serif-font-family: ui-sans-serif, system-ui, sans-serif, "Noto Emoji",
"Noto Color Emoji", emoji;
$monospace-font-family: ui-monospace, monospace, "Noto Emoji",
"Noto Color Emoji", emoji;
// Must be in the end under threat of undefined variable error.
$base-font-family: $sans-serif-font-family;
@import "{{ site.theme }}";
:root {
color-scheme: dark light !important;
color-scheme: light dark !important;
}
* {