diff options
-rw-r--r-- | scss/main.scss | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/scss/main.scss b/scss/main.scss index 2ebdbe8..d2cbcb9 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -88,6 +88,14 @@ input { -moz-box-sizing: border-box; } +a[href]:not([href=""]):not(.nav-link) { + text-decoration: none; + + &:hover { + text-decoration: underline; + } +} + .navbar-nav { margin-top: 0px } @@ -186,16 +194,13 @@ pre { color: white; text-decoration: none; - &:hover { - background: #70dc70; - } - &.branch { background: #25a525; } &.tag { background: #5874e2; + } } |