diff options
| author | Barry Clark <barry@barryclark.co> | 2014-05-27 21:01:58 -0400 |
|---|---|---|
| committer | Barry Clark <barry@barryclark.co> | 2014-05-27 21:01:58 -0400 |
| commit | 33a20962efae31cbbfc429a0d564306bf05f3f3b (patch) | |
| tree | 9b754aa2ade7227c0234f1f5620819c3607d76d6 | |
| parent | 1423f650fcef2c610c5b4c020f8a60178a04285f (diff) | |
| download | blog-universedg-33a20962efae31cbbfc429a0d564306bf05f3f3b.tar.gz blog-universedg-33a20962efae31cbbfc429a0d564306bf05f3f3b.tar.bz2 blog-universedg-33a20962efae31cbbfc429a0d564306bf05f3f3b.zip | |
Post headers glow blue instead of underlining
| -rwxr-xr-x | scss/style.scss | 8 | ||||
| -rw-r--r-- | style.css | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/scss/style.scss b/scss/style.scss index 42bfcca..bd7f172 100755 --- a/scss/style.scss +++ b/scss/style.scss @@ -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; @@ -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; |
