Theme: Iterate on pullquotes and other hero areas.

See #2.
This commit is contained in:
Ian Dunn 2019-10-18 14:29:26 -07:00
parent 9c700e59cb
commit 78822c4323
No known key found for this signature in database
GPG key ID: 99B971B50343CBCB
5 changed files with 51 additions and 17 deletions

View file

@ -1,18 +1,33 @@
.wp-block-pullquote.is-style-solid-color {
background-color: $color__wporg-blue;
.wp-block-pullquote.is-style-wporg-home-pullquote {
padding: 0;
margin-bottom: 0;
border: none;
blockquote {
max-width: 100%;
margin: 0;
padding: 0;
border: none;
color: $color__text-on-dark;
text-align: left;
}
@include breakpoint( $breakpoint-tablet ) {
background-color: $color__text-on-dark;
position: absolute;
top: 0;
left: -255px;
max-width: 250px;
blockquote {
border-left: none;
color: $color__text-heading;
}
p {
font-size: 2.8rem;
&:first-child {
margin-top: 0;
}
}
}
}
}