From d3984ef059f84f7a3ad81e19b4178eeebca83fdb Mon Sep 17 00:00:00 2001 From: Eorn Date: Sat, 2 May 2020 18:36:01 +0200 Subject: [PATCH] added blockquotes --- static/css/style.css | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index e681808..990be5d 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -354,6 +354,13 @@ article .post-content { } +.page-content blockquote { + border: 1px dashed grey; + padding-right: 15px; + padding-left: 15px; + background-color: #2c2f31; +} + figure { padding: 5px; @@ -371,9 +378,40 @@ figure.img-small { max-width: 20%; } + +figure.img-10 { + max-width: 10%; +} +figure.img-20 { + max-width: 20%; +} +figure.img-30 { + max-width: 30%; +} figure.img-35 { max-width: 35%; } +figure.img-40 { + max-width: 40%; +} +figure.img-50 { + max-width: 50%; +} +figure.img-60 { + max-width: 60%; +} +figure.img-70 { + max-width: 70%; +} +figure.img-80 { + max-width: 80%; +} +figure.img-90 { + max-width: 90%; +} +figure.img-100 { + max-width: 100%; +} figure.center { margin: 0 auto;