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/sass/layout/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#footer {
@include color(alt);
@include vendor("display", "flex");
background-color: _palette(alt, bg);
background-color: $secondary-color;
color: _palette(fg-light);
cursor: default;
position: relative;
Expand Down
1 change: 1 addition & 0 deletions assets/sass/layout/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
position: relative;
text-align: center;
z-index: 2;
background-color: $primary-color;

.logo {
@include vendor(
Expand Down
2 changes: 1 addition & 1 deletion assets/sass/layout/_nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@include color-typography(invert);
@include vendor("display", "flex");
@include vendor("transition", ("transform 1s ease", "opacity 1s ease"));
background: rgba(255, 255, 255, 0.175);
background: $accent-color;
height: 4rem;
line-height: 4rem;
margin: -4rem auto 0 auto;
Expand Down
2 changes: 1 addition & 1 deletion assets/sass/layout/_wrapper.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
left: 0;
width: 100%;
height: 100%;
background-color: _palette(wrapper-bg);
background-color: $accent-color;
background-image: url("../../images/overlay.png"),
linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../../images/bg.jpg");
background-size: auto, auto, 100% auto;
Expand Down
7 changes: 7 additions & 0 deletions assets/sass/libs/_vars.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
// Misc.
$primary-color: #ff4136;
$secondary-color: #ff851b;
$accent-color: #ffdc00;
$invert: (
border: $primary-color,
accent: $accent-color
);
$misc: (
z-index-base: 10000,
);
Expand Down