cerrado @ c1247a52e92523be8d225d20dc9592f32dca5088

ref: Redo text decoration and hover animation

Make both more cohesive within the application.
 1diff --git a/scss/main.scss b/scss/main.scss
 2index 2ebdbe87fc4991339812fd8220e81d617e686116..d2cbcb98c0a3133fbbb05ef80080725bec553e72 100644
 3--- a/scss/main.scss
 4+++ b/scss/main.scss
 5@@ -88,6 +88,14 @@     -webkit-box-sizing: border-box;
 6     -moz-box-sizing: border-box;
 7 }
 8 
 9+a[href]:not([href=""]):not(.nav-link) {
10+    text-decoration: none;
11+
12+    &:hover {
13+        text-decoration: underline;
14+    }
15+}
16+
17 .navbar-nav {
18     margin-top: 0px
19 }
20@@ -186,16 +194,13 @@     margin: 2px;
21     color: white;
22     text-decoration: none;
23 
24-    &:hover {
25-        background: #70dc70;
26-    }
27-
28     &.branch {
29         background: #25a525;
30     }
31 
32     &.tag {
33         background: #5874e2;
34+
35     }
36 }
37