Make blockquotes fancier

This commit is contained in:
Bill Thiede 2024-07-13 09:19:52 -07:00
parent 2a9d5b393e
commit 221f046664

View File

@ -49,8 +49,30 @@
} }
.message .body blockquote { .message .body blockquote {
padding-left: 1em; position: relative;
border-left: 2px solid #ddd; 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, .message .body ul,