repos/kloeckner.com.ar

Backup of part of my webpage
Commits Files Refs README LICENSE
commit 6d7f1de498f8ff19a09ce4d3609bea23637f5885
parent cf1d3bb4269a59e1504cd5218ad5ff0e9a18796e
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date:   Wed, 20 Nov 2024 17:14:20 -0300

add style to `blockquote` tags

Diffstat:
Mcss/article.css | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/css/article.css b/css/article.css
@@ -87,6 +87,15 @@ ul {
     border-top: 1px dashed peru;
 }
 
+blockquote {
+    border-left: 4px solid var(--grey1);
+    padding-left: 1em;
+    font-style: italic;
+    pre {
+        font-style: normal;
+    }
+}
+
 /* Monokai theme */
 /* Background */ .bg { color: antiquewhite; background-color: #111111; -moz-tab-size: 4; -o-tab-size: 4; tab-size: 4 }
 /* PreWrapper */ .chroma { color: antiquewhite; background-color: #111111; -moz-tab-size: 4; -o-tab-size: 4; tab-size: 4; }