From 72cf3c292d57fe82afb4d617bb0b5af835fb9bf2 Mon Sep 17 00:00:00 2001 From: "M. Taylor Saotome-Westlake" Date: Mon, 5 Sep 2016 19:11:46 -0700 Subject: [PATCH] prettier blockquotes https://css-tricks.com/snippets/css/simple-and-nice-blockquote-styling/ was a useful guide to this; in this commit, I've chosen something a little simpler than their snippet, which did the big fancy open-quote emblem-thing. --- theme/static/css/main.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/theme/static/css/main.css b/theme/static/css/main.css index 909a71c..92225f9 100644 --- a/theme/static/css/main.css +++ b/theme/static/css/main.css @@ -208,6 +208,15 @@ article.summary .metadata { margin: 0; } + +blockquote { + background: #F0F0F0; + border-left: 10px solid #C07095; + margin: 1.5em 10px; + padding: 0.5em 10px; +} + + /* Listings */ ol.archive li { -- 2.17.1