From 653e4b1fde2487a2f2390faafb1b32b7e2269781 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 5 Jan 2024 18:53:43 -0800 Subject: feat(css): new font --- src/app.css | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) (limited to 'src/app.css') diff --git a/src/app.css b/src/app.css index c92cc14e..600eb446 100644 --- a/src/app.css +++ b/src/app.css @@ -1,11 +1,22 @@ /* Kosugi, M PLUS 1 Code */ -@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;550;700;800&display=swap'); +/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;550;700;800&display=swap'); */ +@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600&family=Roboto:wght@500;700&display=swap'); body { - font-family: 'Ubuntu', sans-serif; - font-size: 1rem; + font-family: 'Quicksand', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, + Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + font-size: 1em; line-height: 1.5; - text-shadow: 0 0 0.25em var(--base01); + font-weight: 500; + /* text-shadow: 0 0 0.25em var(--base01); */ +} + +#wrapped { + font-family: inherit; + font-size: inherit; + line-height: inherit; + font-weight: 400; + text-shadow: none; } details { @@ -16,7 +27,8 @@ details { } summary { - font-weight: 500; + font-size: 1.05em; + font-weight: 600; } summary small { -- cgit v1.2.3