diff options
author | wires <wires@noreply.wires.systems> | 2025-04-01 13:04:51 -0400 |
---|---|---|
committer | wires <wires@noreply.wires.systems> | 2025-04-01 13:04:51 -0400 |
commit | 4ccf9395a6ae244dfc6cc4328ba4317a343bbfbb (patch) | |
tree | b9e53ed028897bf17c6e48d2d4ff87c7972eb745 /assets/style.css | |
parent | fix codeblock tab-index issue (diff) | |
download | blog-4ccf9395a6ae244dfc6cc4328ba4317a343bbfbb.tar.gz |
more little layout tweaks
Diffstat (limited to 'assets/style.css')
-rw-r--r-- | assets/style.css | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/assets/style.css b/assets/style.css index 6ddf793..a1ae366 100644 --- a/assets/style.css +++ b/assets/style.css @@ -70,11 +70,12 @@ p { #main-nav ul { padding: 0; - margin: 0 0 1em; + margin: 0; + display: flex; + list-style: none; } #main-nav li { - display: inline-block; margin-inline-end: 0.5em; } @@ -82,7 +83,8 @@ p { font-family: sans-serif; font-weight: bold; font-size: 150%; - margin-bottom: 0.25rem; + line-height: 1.3; + margin: 0; } footer { @@ -91,6 +93,7 @@ footer { header h1 { margin: 0; + font-size: 2em; } header { @@ -108,11 +111,11 @@ hr { background: var(--overlay); } -pre code { +.chroma { background: black; border: 1px solid var(--overlay); border-radius: 8px; - padding: 1em; + padding: 1rem; display: block; overflow-x: auto; } |