diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2025-02-15 23:38:11 +0100 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2025-02-15 23:45:03 +0100 |
commit | c1247a52e92523be8d225d20dc9592f32dca5088 (patch) | |
tree | 07986a94c57030016c6cbf119fc28e3246365d6b | |
parent | 359499b1058a6b8cd4cc99aadd407e0a050ba4d7 (diff) | |
download | cerrado-0.2.tar.gz cerrado-0.2.tar.bz2 cerrado-0.2.zip |
Make both more cohesive within the application.
-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; + } } |