style links in footer
authorDan Allen <dan@opendevise.com>
Thu, 8 Feb 2018 03:31:49 +0000 (20:31 -0700)
committerDan Allen <dan@opendevise.com>
Thu, 8 Feb 2018 23:10:04 +0000 (16:10 -0700)
- color #5d5d5d
- text decoration underline only on hover

src/css/footer.css

index 5e12675..7dd2bad 100644 (file)
@@ -8,3 +8,12 @@ footer.footer {
 .footer p {
   margin: 0.5rem 0;
 }
+
+.footer a {
+  color: #5d5d5d;
+  text-decoration: none;
+}
+
+.footer a:hover {
+  text-decoration: underline;
+}