Fix targeting of titles; add blog front page block styles

This commit is contained in:
benjamin melançon 2019-09-30 19:28:46 -04:00
parent 08ce459501
commit 962ff7ce16
2 changed files with 25 additions and 1 deletions

View file

@ -3112,6 +3112,14 @@ a.tag:hover {
.is-article a { .is-article a {
color: white; } color: white; }
.block-views-blockhome-page-views-block-blogs .button,
.is-blog {
background-color: #4391E0;
color: white; }
.block-views-blockhome-page-views-block-blogs .button a,
.is-blog a {
color: white; }
.input, .textarea, .select select { .input, .textarea, .select select {
background-color: white; background-color: white;
border-color: #dbdbdb; border-color: #dbdbdb;

View file

@ -68,12 +68,20 @@
.block-views-blockhome-page-views-block-articles { .block-views-blockhome-page-views-block-articles {
border-top: 2px solid $article; border-top: 2px solid $article;
h2 { > h2 {
color: $white; color: $white;
background-color: $article; background-color: $article;
padding: 2px 0.2em 0 0.2em; padding: 2px 0.2em 0 0.2em;
} }
} }
.block-views-blockhome-page-views-block-blogs {
border-top: 2px solid $blog;
> h2 {
color: $white;
background-color: $blog;
padding: 2px 0.2em 0 0.2em;
}
}
.block-views-blockhome-page-views-block-articles .button, .block-views-blockhome-page-views-block-articles .button,
.is-article { .is-article {
@ -83,3 +91,11 @@
color: $white; color: $white;
} }
} }
.block-views-blockhome-page-views-block-blogs .button,
.is-blog {
background-color: $blog;
color: $white;
a {
color: $white;
}
}