Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/scss/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
margin-top: 70px;
padding-top: 60px;
padding-bottom: 60px;
background-color: var(--black);
background-color: var(--footer-background-color);
color: var(--footer-link-color);

a {
Expand Down
5 changes: 5 additions & 0 deletions assets/scss/_global.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@use "variables";

body {
background-color: var(--page-background-color);
overscroll-behavior: none; // fixes menu off bottom of screen.
height: auto;
max-width: 100%;
Expand All @@ -20,6 +21,10 @@ body {
}
}

.page {
background-color: var(--page-background-color);
}

.wrap {
padding-left: 12px;
padding-right: 12px;
Expand Down
6 changes: 3 additions & 3 deletions assets/scss/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

.header {
width: 100%;
background: var(--white);
background-color: var(--menu-background-color);
z-index: 20;

position: relative;
Expand Down Expand Up @@ -80,7 +80,7 @@
}

.main-menu {
background-color: var(--white);
background-color: var(--menu-background-color);
padding-left: 12px;
padding-right: 12px;
@media (min-width: 372px) {
Expand Down Expand Up @@ -353,7 +353,7 @@
margin-left: 0; // reset.
padding-left: 0; // reset.
@media (min-width: variables.$min-desktop) {
background-color: var(--white);
background-color: var(--submenu-background-color);
border-radius: 12px;
border: 1px solid var(--gray-200);
box-shadow:
Expand Down
5 changes: 2 additions & 3 deletions assets/scss/_language-selector.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.dropdown {
position: relative;
border-radius: 6px;
background: var(--white);
background-color: var(--menu-background-color);
font-weight: 700;
line-height: normal;
font-size: 16px;
Expand Down Expand Up @@ -51,7 +51,6 @@

.dropdown-current {
position: relative;
background: var(--white);
display: inline-flex;
align-items: center;
justify-content: space-between;
Expand Down Expand Up @@ -120,7 +119,7 @@
@media (min-width: variables.$min-desktop) {
border: 1px solid var(--gray-200);
border-radius: 12px;
background-color: var(--white);
background-color: var(--submenu-background-color);
}
}

Expand Down
6 changes: 6 additions & 0 deletions assets/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,19 @@
--rounded-font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, Roboto,
Ubuntu, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

--page-background-color: var(--white);
--text-color: var(--black);
--black: #000000;
--white: #ffffff;
--link-color: var(--primary-600);
--link-color-hover: var(--primary-700);

--menu-background-color: var(--white);
--submenu-background-color: var(--white);
--menu-link-color: var(--black);
--menu-link-color-hover: var(--gray-800);

--footer-background-color: var(--black);
--footer-link-color: var(--white);
--footer-link-color-hover: var(--primary-400);
--gutter: 25px;
Expand Down