Adjusting the navbar
This design calls for a fixed top navbar with a significant color shift for hovered and active links. I've already applied some of these styles by setting appropriate variables. Let me point those out, and then we'll move on to make some necessary adjustments to the markup.
The scss/_variables.scss
file is based on Bootstrap's variables.scss
file. I've customized the shades of gray in line with previous projects. You'll see these in the topmost section of the file.
I've further adjusted the following navbar variables, adjusting its height, margin, colors, and hover colors specifically for this design:
// Navbar $navbar-bg: #fff; // Navbar links $navbar-link-color: $gray; $navbar-link-bg: #fff; $navbar-link-hover-color: #fff; $navbar-link-hover-bg: $gray; $navbar-link-active-color: #fff; $navbar-link-active-bg: $gray-dark;
We'll use the...