Commit c2201ed2 authored by Robert Knight's avatar Robert Knight Committed by Nick Stenning

Keep the existing grey/noise background for pages other than the homepage

Keep the existing grey background and Lato font for
pages on the site other than the new homepage.

Those pages will be updated in separate design iterations.
parent b0386b0c
@at-root {
.home__content {
// use new Sans Serif font on the homepage and larger line-spacing.
// We'll likely want to move this up to <body> in future once
// other pages on the site have been updated to a new design
font-family: $font-family-site-sans;
line-height: $line-height-tall;
color: $gray-darker;
margin-top: 95px;
}
......
......@@ -22,11 +22,20 @@
// pages
@import './home';
body {
background-color: white;
// body with grey noise background and Lato font used
// in the sidebar and groups pages
.body--default {
@extend .noise;
font-family: $sans-font-family;
}
// body with white background and Source Sans Pro
// font used in the new homepage design
.body--white {
background-color: white;
font-family: $font-family-site-sans;
}
.content {
margin-left: auto;
margin-right: auto;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment