diff options
| author | Fuwn <[email protected]> | 2024-01-10 09:31:56 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-10 09:31:56 -0800 |
| commit | 1c31e96ffaf826f87e54baff49eb99397bb07ddd (patch) | |
| tree | 576bc814e649f7eb568257e6cfd7f4e347a9b520 /src | |
| parent | feat(card): new shadows (diff) | |
| download | due.moe-1c31e96ffaf826f87e54baff49eb99397bb07ddd.tar.xz due.moe-1c31e96ffaf826f87e54baff49eb99397bb07ddd.zip | |
feat(layout): standardise header font and colour
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/+layout.svelte | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index d726fc20..87bcbabe 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -83,16 +83,18 @@ </div> <style> - @import url('https://proxy.due.moe/?q=https://fonts.googleapis.com/css2?family=Montserrat:wght@550&display=swap'); - #header { - font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, - Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; - font-size: 1em; - font-weight: 550; + font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, + Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + font-size: 1.05em; + font-weight: 600; padding: 0.8rem 0.4rem; } + #header a { + color: var(--base06); + } + :global(html.light-theme) { filter: invert(0); } |