Scss basics

This commit is contained in:
Unknown
2017-10-15 18:43:44 +01:00
parent 543bb91568
commit 6c835bee44
10 changed files with 175 additions and 0 deletions

View File

@ -0,0 +1,28 @@
@import "base.settings";
@import "base.fonts";
@import "base.palette";
@import "base.theme";
@import "base.mixins";
body
{
// Set line heights
line-height: $base-line-height;
// Set default font weights
font-weight: $font-weight-normal;
}
h1,h2,h3,h4,h5,h6
{
// Set heading font weights
font-weight: $font-weight-heading;
}
// Set heading sizes
h1 { font-size: $header-size-1; }
h2 { font-size: $header-size-2; }
h3 { font-size: $header-size-3; }
h4 { font-size: $header-size-4; }
h5 { font-size: $header-size-5; }
h6 { font-size: $header-size-6; }