From 6fa883da369eafcc38210a172d0bd20a7870d798 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 4 Jan 2024 20:30:21 -0800 Subject: feat(layout): style navigation --- src/app.css | 14 ++++++++++++-- src/routes/+layout.svelte | 29 +++++++++++++++++++---------- 2 files changed, 31 insertions(+), 12 deletions(-) diff --git a/src/app.css b/src/app.css index 4dca3954..d6e507e5 100644 --- a/src/app.css +++ b/src/app.css @@ -14,7 +14,11 @@ details { } summary { - font-weight: 550; + font-weight: 500; +} + +summary small { + font-weight: normal; } ul, @@ -176,8 +180,14 @@ code { border-radius: 0; } -/* remove list dots and stuff */ ul, li::marker { content: unset !important; } + +.card-centered { + margin: 0 auto; + display: flex; + flex-direction: column; + justify-content: center; +} diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index becb8b58..f1a99fc7 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -35,17 +35,20 @@
- @@ -123,4 +128,8 @@ :global(a:hover) { text-decoration: underline; } + + .header-item { + margin: 0 0.625rem; + } -- cgit v1.2.3