Adding CSS rule for Markdown Blockquotes

Using a vertical bar next to the text to indicate a blockquote.
Using lighter text color as well (similar to github's blockquotes).

resolves #2064

Signed-off-by: Sebastian Bachmann <hello@reox.at>
This commit is contained in:
Sebastian Bachmann
2020-06-24 17:36:05 +02:00
parent f047ee9e1c
commit 6aeeaa4e43

View File

@@ -100,3 +100,9 @@ table {
padding: 3px;
}
}
blockquote {
padding-left: 10px;
border-left: 3px solid var(--color-border-dark);
color: var(--color-text-lighter);
}