From 221f046664c606a2d1fd3d76560d5c484d9f0280 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sat, 13 Jul 2024 09:19:52 -0700 Subject: [PATCH] Make blockquotes fancier --- web/static/style.css | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/web/static/style.css b/web/static/style.css index 7afb966..86ac0e6 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -49,8 +49,30 @@ } .message .body blockquote { - padding-left: 1em; - border-left: 2px solid #ddd; + position: relative; + padding: 1em; +} + +.message .body blockquote::before { + position: absolute; + top: 0.25em; + left: 0; + + content: "\f10d"; + font-family: 'FontAwesome'; + font-size: 50pt; + color: rgba(0, 0, 0, 0.1); +} + +.message .body blockquote::after { + position: absolute; + bottom: 0.25em; + right: 0; + + content: "\f10e"; + font-family: 'FontAwesome'; + font-size: 50pt; + color: rgba(0, 0, 0, 0.1); } .message .body ul,