[STYLE] Change blockquotes style to be like .bigquote

This commit is contained in:
Gregory Trolliet 2020-06-09 18:37:50 +02:00
parent 715fb3f414
commit b6ec4023b1
1 changed files with 5 additions and 2 deletions

View File

@ -673,9 +673,12 @@ details[open] summary:hover {
} }
/******************* Article Blockquote *******************/ /******************* Article Blockquote *******************/
.bigquote { blockquote {
position: relative; position: relative;
background-color: var(--background-color-light); background-color: var(--background-color-light);
padding: 0.1rem 1rem;
}
.bigquote {
padding: 1rem; padding: 1rem;
border-radius: 1.5rem; border-radius: 1.5rem;
margin-top: 2rem; margin-top: 2rem;
@ -686,7 +689,7 @@ details[open] summary:hover {
.bigquote footer { .bigquote footer {
text-align: right; text-align: right;
} }
.bigquote:after { blockquote:after {
position: absolute; position: absolute;
content: "”"; content: "”";
color: var(--text-color); color: var(--text-color);