diff options
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/static/style.css b/static/style.css index 1145c0f..19cd8ae 100644 --- a/static/style.css +++ b/static/style.css @@ -9,7 +9,7 @@ --article-bg: ##fcfcfc; --article-border-color: #f3f1f1; - --article-shadow-color: rgba(0,0,0,0.42); + --highlight-bg: rgba(240, 240, 240, 0.42); --h2-color: var(--text-color); @@ -34,7 +34,7 @@ --article-bg: #141818; --article-border-color: var(--article-bg); - --article-shadow-color: var(--site-bg); + --highlight-bg: rgb(31 27 27); --pre-bg: #1b2121; @@ -124,7 +124,7 @@ article p { article a { text-decoration: underline; } -h3 { +h3, h4, h5 { text-align: left; border: 0; border-bottom-width: 1px; @@ -180,6 +180,14 @@ img.center { max-width: 100%; height: auto; } +figure.graph { + background-color: var(--highlight-bg); + padding: 5px; + padding-top: 20px; +} +figure.graph img { + width: 95%; +} /* ----------- Articles adjustement navigation */ .next-link { |