style: Don't highlight links when they are in headers

This uses some SASS magic instead of the previous single rule
because I need it for both the blog title as well as each post's
title link. Yay, SASS?!
This commit is contained in:
Alan Orth 2016-09-14 15:14:13 +03:00
parent 2bb9509bbb
commit 2b25241f3c
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
2 changed files with 6 additions and 7 deletions

View File

@ -25,6 +25,10 @@ h5, .h5,
h6, .h6 {
font-weight: normal;
color: #333;
a, a:hover, a:focus {
color: inherit;
text-decoration: none;
}
}
@ -94,11 +98,6 @@ h6, .h6 {
font-size: 2rem;
font-weight: normal;
}
.blog-title a,
.blog-title a:hover,
.blog-title a:focus {
color: inherit;
}
.blog-description {
font-size: 1.1rem;
color: #999;

File diff suppressed because one or more lines are too long