diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-09-04 16:49:49 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-09-04 16:49:49 -0500 |
commit | 96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7 (patch) | |
tree | 79502d636c2e363bec7fe6fd36934de646d09f69 /theme/static | |
parent | 8d53754c22fb4db81948d0147511723a87a1c8b7 (diff) | |
download | cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.tar.gz cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.tar.bz2 cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.zip |
shift from monospace theme to a formalized serif theme
Diffstat (limited to 'theme/static')
-rw-r--r-- | theme/static/styles.css | 39 |
1 files changed, 15 insertions, 24 deletions
diff --git a/theme/static/styles.css b/theme/static/styles.css index a032e1a..7fca84b 100644 --- a/theme/static/styles.css +++ b/theme/static/styles.css @@ -20,14 +20,8 @@ html{line-height:1.15;-webkit-text-size-adjust:100%}main{display:block}h1{font-s body { background-color: var(--bg); color: var(--fg); - font-family: - Menlo, - Consolas, - Monaco, - Liberation Mono, - Lucida Console, - monospace; - font-size: 1rem; + font-family: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; + font-size: 1.25rem; line-height: 1.5; max-width: 50em; margin: 0 auto; @@ -55,7 +49,7 @@ footer p { } ul { - list-style-type: "- "; + list-style-type: "- "; } .site-nav ul { @@ -77,20 +71,20 @@ h4 { } h1 { - font-size: 1.5rem; + font-size: 1.75rem; font-weight: bold; margin-top: 1rem; margin-bottom: 0.75rem; } h2 { - font-size: 1.25rem; + font-size: 1.5rem; margin-top: 1rem; margin-bottom: 0.5rem; } h3 { - font-size: 1rem; + font-size: 1.25rem; margin-top: 1rem; margin-bottom: 0.25rem; } @@ -123,13 +117,6 @@ table { border-collapse: collapse; color: var(--fg); border-color: var(--bg-bright); - font-family: - Menlo, - Consolas, - Monaco, - Liberation Mono, - Lucida Console, - monospace; font-size: inherit; width: 100%; } @@ -144,7 +131,6 @@ td { pre, pre>code, -time, code { font-family: Menlo, @@ -165,7 +151,6 @@ pre { :not(pre)>code { color: var(--code); - font-family: inherit; } aside { @@ -187,11 +172,14 @@ blockquote p { .post, .wiki-post { display: flex; + justify-content: space-between; } .post time { flex-shrink: 0; + font-style: italic; margin-right: 0.5rem; + opacity: 0.8; } .wiki-post { @@ -220,6 +208,10 @@ blockquote p { margin: 0; } +.post-metadata time { + font-style: italic; +} + details { display: block; margin-top: 1rem; @@ -273,15 +265,14 @@ span.tag::before { } .post-tags { - font-size: 0.85rem; - color: #999; + font-size: 1rem; margin-top: 0.1rem; } .tag { margin-right: 0.3rem; font-style: normal; - opacity: 0.8; + opacity: 0.5; } .tag::before { |