trwnh.com/hugo/assets/scss/components/pullquote.scss

20 lines
317 B
SCSS
Raw Normal View History

2022-07-11 22:50:12 +00:00
@mixin pullquote {
content: attr(data-pullquote);
font-size: 1em;
line-height: 1.2;
display: flex;
font-family: serif;
color: #555;
padding: 1em;
font-size: 1.25em;
}
.has-pullquote{
&.before:before {
@include pullquote;
margin-bottom: 1rem;
}
&.after:after {
@include pullquote;
margin-top: 1rem;
}
}