Footer
One of the final steps for our homepage is to color the footer. We'll use the secondary color as the background and the primary color for all the links, as well as the dropcap. Open scss/theme/_color.scss and add the following to the end of the file:
.footer { background-color: get($theme, color, secondary); color: white; a, a:hover, .subfooter a, .subfooter a:hover { @include hover-link; color: get($theme, color, primary); } .subfooter-widget-section-text > p:first-of-type::first-letter { color: get($theme, color, primary); } .footer-inner:last-child { border-top: 1px solid hsla(0, 0%, 100%, 0.1); } }
Lastly, we'll increase the size of the social icons in the _typography.scss file in our scss/theme folder. While we're here we'll also tidy up all of our .subfooter-section-widget
rules. Right now we have three separate rules which could instead be nested under one...