diff options
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/static/style.css b/static/style.css index 967c9be..f67c2c0 100644 --- a/static/style.css +++ b/static/style.css @@ -11,7 +11,7 @@ @media (prefers-color-scheme: dark) { :root { - --fg: #fff; + --fg: #cbb; --bg: #211e1f; --subtitle: #888; --pre-fg: #eaeaea; @@ -45,22 +45,21 @@ nav.navbar > a { padding: 1px 20px; background: var(--pre-bg); border: 1px solid var(--border1); - border-radius: 6px; } h1.title { line-height: 1.2; - font-size: 40px; + font-size: 1.6em; } h1 { - line-height: 1.2; - font-size: 26px; + line-height: 1; + font-size: 1.2em; } h2 { - line-height: 1.2; - font-size: 21px; + line-height: 1; + font-size: 1.2em; } p.subtitle { @@ -94,7 +93,7 @@ code { } a { - color: #d53c54;/*#e77850;*/ + color: #cc833b;/*#e77850;*/ text-decoration: none; } @@ -110,6 +109,11 @@ td,th { border: solid 1px var(--border2); } +span.date { + font-size: 80%; + +} + table { border: solid 1px var(--border1); background: var(--code-bg); @@ -122,6 +126,4 @@ p > img { text-align: center; margin-left: auto; margin-right: auto; - box-shadow: -5px -5px 8px 3px lightgray; - border-radius: 12px; } |