Add hover effect to all links except ones with 'nohover' class
diff --git a/static/css/style.less b/static/css/style.less
index 775b392..4d60c18 100644
--- a/static/css/style.less
+++ b/static/css/style.less
@@ -24,6 +24,12 @@
   text-decoration: none;
 }
 
+a[href]:not(.nohover) {
+  &:hover{
+    color: @accent;
+  }
+}
+
 hr {
   color: @light-grey;
   background-color: @light-grey;