diff --git a/styles/_variables.scss b/styles/_variables.scss index d8f70c7..c2b115d 100644 --- a/styles/_variables.scss +++ b/styles/_variables.scss @@ -17,7 +17,7 @@ $path-font-awesome : "./gitbook/fonts/fontawesome" !default; // ### Brand colors // The primary accent color -$color-primary : #128bee;//#ff4f4f !default; +$color-primary : #ff4f4f !default; // ### Gray colors @@ -32,7 +32,7 @@ $color-gray-lightest : darken( white, 5% ) !default; // ### Graphic colors // The color of borders -$color-border : #555; //$color-gray-lightest !default; +$color-border : $color-gray-lightest !default; // The text color of buttons $color-button : $color-gray-lighter; // The text color of buttons on hover diff --git a/styles/website.scss b/styles/website.scss index 93cf89a..b11a722 100644 --- a/styles/website.scss +++ b/styles/website.scss @@ -1,5 +1,17 @@ @import "variables"; -@import "all"; -$color-primary : #128bee; -$color-border : #555; \ No newline at end of file +$sidebar-background : #555; +$sidebar-color : white; +$color-primary : #128bee; + +$sidebar-logo-map : ( + background: #1694CA, + border-bottom: 1px solid $color-border + ) !default; + +// The wrapper div around the search input +$search-input-wrapper-map : ( + background: #1694CA, + border-bottom: 1px solid $color-border + ) !default; +@import "all"; \ No newline at end of file