diff --git a/_includes/floating_button.html b/_includes/floating_button.html index 91364de..7234ff4 100644 --- a/_includes/floating_button.html +++ b/_includes/floating_button.html @@ -1,11 +1,11 @@
- {% if include.download %}
- - diff --git a/_includes/header.html b/_includes/header.html index 03bdc70..5fb280a 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -33,7 +33,7 @@
diff --git a/_sass/_button.scss b/_sass/_button.scss index 72264ae..be17b37 100644 --- a/_sass/_button.scss +++ b/_sass/_button.scss @@ -17,7 +17,17 @@ background-color: $fill_medium; color: $white; } +.ui.button.safing-full { + color: $fill_lighter; + background-color: $white; +} + +.ui.button.safing-full:hover { + + background-color: $fill_lighter; + color: $white; +} diff --git a/_sass/_floating_button.scss b/_sass/_floating_button.scss index 0987191..c9343c6 100644 --- a/_sass/_floating_button.scss +++ b/_sass/_floating_button.scss @@ -2,8 +2,8 @@ position: fixed; right: 25px; top: 25px; - - background-color: $white; + box-shadow: 1px 2px 3px 1px #718399; + background-color: $discreet; // width: 64px; DEFINED BELOW! padding: 5px; border-radius: 32px; diff --git a/_sass/_header.scss b/_sass/_header.scss index c657e3a..5b30807 100644 --- a/_sass/_header.scss +++ b/_sass/_header.scss @@ -1,7 +1,11 @@ + +.sidebar-icon { + color: $white !important; +} #menubar { width: 100%; - background-color: #38465c; + background-color: $fill_medium; margin: 0; border-radius: 0; z-index: 1; @@ -21,7 +25,7 @@ // no js version @media only screen and (max-width: 767px) { #menubar.home { - background-color: #38465c !important; + background-color: $fill_medium !important; position: relative; } #menubar .right.menu a.item { diff --git a/_sass/_variables.scss b/_sass/_variables.scss index e6475cd..9e68a4a 100644 --- a/_sass/_variables.scss +++ b/_sass/_variables.scss @@ -9,6 +9,7 @@ $fill_dark: #222a37 !default; $background_main: #f7f7f7 !default; $fill_lighter: #788294 !default; $secondary: $fill_medium; +$discreet: #F7F7F7; $anchor: #0078ff; $anchor_hover: #258bff;