Skip to content

Commit 33a2096

Browse files
committed
Post headers glow blue instead of underlining
1 parent 1423f65 commit 33a2096

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

scss/style.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,14 @@ nav {
266266
}
267267

268268
.post {
269+
h1 {
270+
cursor: pointer;
271+
&:hover, &:active {
272+
color: $blue;
273+
text-decoration: none;
274+
}
275+
}
276+
269277
blockquote {
270278
border-left: 2px solid $gray;
271279
font-size: 22px;

style.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,11 @@ nav {
496496
padding-bottom: 1em;
497497
border-bottom: none; }
498498

499+
.post h1 {
500+
cursor: pointer; }
501+
.post h1:hover, .post h1:active {
502+
color: #4183c4;
503+
text-decoration: none; }
499504
.post blockquote {
500505
border-left: 2px solid #666666;
501506
font-size: 22px;

0 commit comments

Comments
 (0)