Post headers glow blue instead of underlining

This commit is contained in:
Barry Clark 2014-05-27 21:01:58 -04:00
parent 1423f650fc
commit 33a20962ef
2 changed files with 13 additions and 0 deletions

View File

@ -266,6 +266,14 @@ nav {
}
.post {
h1 {
cursor: pointer;
&:hover, &:active {
color: $blue;
text-decoration: none;
}
}
blockquote {
border-left: 2px solid $gray;
font-size: 22px;

View File

@ -496,6 +496,11 @@ nav {
padding-bottom: 1em;
border-bottom: none; }
.post h1 {
cursor: pointer; }
.post h1:hover, .post h1:active {
color: #4183c4;
text-decoration: none; }
.post blockquote {
border-left: 2px solid #666666;
font-size: 22px;