summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authormms <michal@sapka.me>2023-08-03 09:50:43 +0200
committermms <michal@sapka.me>2023-08-03 09:50:43 +0200
commit7289e99c468171b0b69a773dd5766af976340e30 (patch)
tree30e6c6a8b4584fc4a15a1a0cdff8bc1144d4d83a /static
parentd9fde844db4482a92a9373d4b03d51ab3b695448 (diff)
feat: increase center images
Diffstat (limited to 'static')
-rw-r--r--static/style.css8
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);