five-for-the-future/themes/wporg-5ftf/css/objects/_quote.scss
2019-10-28 18:21:54 -04:00

37 lines
737 B
SCSS

.wp-block-quote {
padding-left: 0;
border-left: none;
font-family: $font__serif;
font-size: ms(2);
p {
color: $color__text;
}
cite {
font-size: ms(-1);
}
@include breakpoint( $breakpoint-tablet ) {
margin-left: -62px;
padding-left: 62px;
background-repeat: no-repeat;
background-position: top left;
background-image: url("data:image/svg+xml,#{$icon__quote}");
}
@include breakpoint( 0, #{ $breakpoint-tablet - 1 } ) {
:first-child:before {
display: inline-block;
vertical-align: bottom;
content: '';
width: 32px;
height: 32px;
margin-right: 12px;
background-repeat: no-repeat;
background-position: top left;
background-image: url("data:image/svg+xml,#{$icon__quote}");
}
}
}