diff options
author | Nicolas Dato <nicolas.dato@gmail.com> | 2024-11-26 11:50:27 -0300 |
---|---|---|
committer | Nicolas Dato <nicolas.dato@gmail.com> | 2024-11-26 12:16:42 -0300 |
commit | 8354b8f77fdfd907f07574b63e910aba09232ade (patch) | |
tree | 14ea9df29a441c097f46b20b63f6c952e4e6ccb9 /zola/static | |
parent | 40b19b34385a1c6dcefcfaa3e9fa2087ab16ff07 (diff) | |
download | ndato.com-8354b8f77fdfd907f07574b63e910aba09232ade.tar.gz ndato.com-8354b8f77fdfd907f07574b63e910aba09232ade.tar.bz2 |
first article, safer pointers
Diffstat (limited to 'zola/static')
-rw-r--r-- | zola/static/style.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/zola/static/style.css b/zola/static/style.css index 55c4dbf..61a853d 100644 --- a/zola/static/style.css +++ b/zola/static/style.css @@ -16,7 +16,7 @@ --cyan: #2aa198; --green: #859900; --header-font-size: 150%; - --left-column-width: 22ex; + --left-column-width: 20ex; --border-width: 1px; --padding: 2ex; --margin: 2ex; @@ -24,7 +24,7 @@ --content-padding-right: 4ex; --body-max-width: 130ex; --body-font-size: 17px; - --first-letter-font-size: 120%; + --first-letter-font-size: 130%; --dt-font-size: 120%; --primary-color: var(--base1); --secondary-color: var(--yellow); @@ -126,6 +126,11 @@ h2 { border-top: 1px solid var(--primary-color); } +pre { + padding: 1ex; + border: var(--border-width) solid var(--primary-border-color); +} + :link, :visited { color: var(--link-text-color); |