diff options
author | mms <michal@sapka.me> | 2023-08-03 09:50:43 +0200 |
---|---|---|
committer | mms <michal@sapka.me> | 2023-08-03 09:50:43 +0200 |
commit | 7289e99c468171b0b69a773dd5766af976340e30 (patch) | |
tree | 30e6c6a8b4584fc4a15a1a0cdff8bc1144d4d83a /static | |
parent | d9fde844db4482a92a9373d4b03d51ab3b695448 (diff) |
feat: increase center images
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index b61fc37..e2f2e61 100644 --- a/static/style.css +++ b/static/style.css @@ -10,6 +10,8 @@ --article-bg: ##fcfcfc; --article-border-color: #f3f1f1; --highlight-bg: rgba(240, 240, 240, 0.42); + + --border-color: var(--text-color); --blockquote-border-color: #d2d2d2; --blockquote-color: ##666666; @@ -35,8 +37,9 @@ --article-border-color: var(--article-bg); --highlight-bg: rgb(31 27 27); + --border-color: var(--text-color); + --pre-bg: #1b2121; - } } /* ----------- Entire site */ @@ -173,6 +176,9 @@ img.float-right { img.center { max-width: 100%; height: auto; + border-style: solid; + border-color: var(--border-color); + border-width: 1px; } figure.graph { background-color: var(--highlight-bg); |