From 94656f4c7929542c1e4b8672e1f8c05fa5fff3bb Mon Sep 17 00:00:00 2001
From: Luiz F. A. de PrĂ¡ <luizdepra@users.noreply.github.com>
Date: Fri, 14 Sep 2018 12:02:58 +0000
Subject: [PATCH] Style refactor (#77)

---
 assets/scss/_navigation.scss |   22 ++++++++++++++++------
 1 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/assets/scss/_navigation.scss b/assets/scss/_navigation.scss
index 5c64861..0b21015 100644
--- a/assets/scss/_navigation.scss
+++ b/assets/scss/_navigation.scss
@@ -4,14 +4,21 @@
   a, span {
     display: inline;
     font-size: 1.6rem;
-    text-transform: uppercase;
+    font-family: $heading-font-family;
+    font-weight: 700;
     line-height: 6.0rem;
-    letter-spacing: 0.1rem;
-    @media only screen and (max-device-width : 768px) {
-      font-size: 1.4rem;
+    color: $fg-color;
+  }
+  a {
+    &:hover,
+    &:focus {
+      color: $link-color
     }
   }
-
+  .navigation-title {
+    letter-spacing: 0.1rem;
+    text-transform: uppercase;
+  }
   .navigation-list {
     float: right;
     list-style: none;
@@ -58,7 +65,6 @@
       }
     }
   }
-
   #menu-toggle {
     display: none;
     @media only screen and (max-device-width : 768px) {
@@ -81,6 +87,10 @@
       line-height: 6.0rem;
       color: $fg-color;
       cursor: pointer;
+      &:hover,
+      &:focus {
+        color: $link-color
+      }
     }
   }
 }

--
Gitblit v1.10.0