Change button color on header

This commit is contained in:
Samy Pessé
2014-08-08 20:11:22 -07:00
parent 5e959d65a2
commit 275eedf076
3 changed files with 9 additions and 5 deletions
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -13,7 +13,7 @@
flex-direction: column;
font-size: 40px;
color: rgba(0, 0, 0, 0.2);
color: @navigation-color;
text-align: center;
@@ -21,7 +21,7 @@
&:hover {
text-decoration: none;
color: rgba(0, 0, 0, 0.6);
color: @navigation-hover-color;
}
&.navigation-next {
+6 -2
View File
@@ -8,11 +8,15 @@
@header-color: hsl(194, 5%, 52%);
@header-background: transparent;
@header-border: rgba(0, 0, 0, 0.07);
@header-button-color: hsl(194, 5%, 52%);
@header-button-hover-color: #151515;
@header-button-color: #ccc;
@header-button-hover-color: #444;
@header-button-hover-background: none;
@header-dropdown-background: @sidebar-background;
// Navigation
@navigation-color: @header-button-color;
@navigation-hover-color: @header-button-hover-color;
// Body
@body-background: white;