diff options
| author | Fuwn <[email protected]> | 2024-01-06 00:02:39 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-06 00:02:39 -0800 |
| commit | 5377f4d2c7c9d8f38bb9a9595bc9774aaa1bc2f4 (patch) | |
| tree | ad9313d333252fcc105c6a5dca97cf24741eadb4 /src/lib/Styles/typography.css | |
| parent | feat(css): smaller body shadow (diff) | |
| download | due.moe-5377f4d2c7c9d8f38bb9a9595bc9774aaa1bc2f4.tar.xz due.moe-5377f4d2c7c9d8f38bb9a9595bc9774aaa1bc2f4.zip | |
refactor(css): move to modules
Diffstat (limited to 'src/lib/Styles/typography.css')
| -rw-r--r-- | src/lib/Styles/typography.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lib/Styles/typography.css b/src/lib/Styles/typography.css new file mode 100644 index 00000000..039a365b --- /dev/null +++ b/src/lib/Styles/typography.css @@ -0,0 +1,21 @@ +/* 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=Quicksand:wght@300;400;500;600&family=Roboto:wght@500;700&display=swap'); + +body { + 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; + font-weight: 500; + /* text-shadow: 0 0 0.25em var(--base01); */ + padding: 1.25rem; +} + +#wrapped { + font-family: inherit; + font-size: inherit; + line-height: inherit; + font-weight: 400; + text-shadow: none; +} |