mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-24 13:10:18 +01:00
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:
parent
2bb9509bbb
commit
2b25241f3c
@ -25,6 +25,10 @@ h5, .h5,
|
|||||||
h6, .h6 {
|
h6, .h6 {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: #333;
|
color: #333;
|
||||||
|
a, a:hover, a:focus {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -94,11 +98,6 @@ h6, .h6 {
|
|||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
.blog-title a,
|
|
||||||
.blog-title a:hover,
|
|
||||||
.blog-title a:focus {
|
|
||||||
color: inherit;
|
|
||||||
}
|
|
||||||
.blog-description {
|
.blog-description {
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
color: #999;
|
color: #999;
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user