CSS: Add navbar button transition to non-solid too
Have the same effect for button state changes when page is at the top
and when it is scrolled
diff --git a/css/style.css b/css/style.css
index 350b1dc..6fdb3a3 100644
--- a/css/style.css
+++ b/css/style.css
@@ -93,7 +93,9 @@
text-transform: lowercase;
margin: 9px 5px 5px 5px;
border: 1px solid transparent;
- border-radius: 5px; }
+ border-radius: 5px;
+ -webkit-transition: color 1s ease 0s, border-color 1s ease 0s;
+ transition: color 1s ease 0s, border-color 1s ease 0s; }
.navbar-default .navbar-nav > li > a:hover {
color: #ffffff;
border: 1px solid #ffffff; }