Tweak no-image color background heights on full nodes at larger screen sizes

This commit is contained in:
benjamin melançon 2019-09-30 19:48:16 -04:00
parent e818b0eb06
commit 13f5a82540

View file

@ -39,10 +39,21 @@
} }
} }
/* On content listing pages (e.g. card view mode). */
.background-replacement-for-no-image { .background-replacement-for-no-image {
height: 10rem; height: 10rem;
background-color: cadetblue; background-color: cadetblue;
} }
/* On full content pages. */
.featured-image .background-replacement-for-no-image {
height: 12rem;
@include from($desktop) {
height: 14rem;
}
@include from($widescreen) {
height: 16rem;
}
}
// Gleanings don't have the same faux-image structure (because they'll never // Gleanings don't have the same faux-image structure (because they'll never
// have a featured image) but we still want the title to look about the same. // have a featured image) but we still want the title to look about the same.