27 lines
413 B
SCSS
27 lines
413 B
SCSS
figure.quote {
|
|
border: 1px solid currentColor;
|
|
padding: 1rem;
|
|
margin-block: 1rem;
|
|
font-family: serif;
|
|
position: relative;
|
|
blockquote {
|
|
border: 0;
|
|
margin-block-end: 0;
|
|
&:before {
|
|
content: '“';
|
|
position: absolute;
|
|
inset-block-start: 0.25rem;
|
|
inset-inline-start: 0.5rem;
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
figcaption {
|
|
font-size: 0.8em;
|
|
cite {
|
|
&:before {
|
|
content: '— ';
|
|
|
|
}
|
|
}
|
|
}
|
|
} |