font weights variables

This commit is contained in:
Raphael Goetter 2017-10-16 16:15:03 +02:00
parent 973a5e6d64
commit 8fc558370f

View File

@ -27,15 +27,24 @@ $h4-size-l : 2.0rem; // equiv "20px"
$h5-size-l : 1.8rem; // equiv "18px"
$h6-size-l : 1.6rem; // equiv "16px"
$line-height-s : 1.1;
$line-height : 1.3;
$line-height-l : 1.5;
// font stacks
$font-stack-common : -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; // system font stack
$font-stack-headings : sans-serif; // font for h1, h2.. h6
$font-stack-monospace : consolas, courier, monospace; // font for code and samples
// line heights
$line-height-s : 1.1;
$line-height : 1.3;
$line-height-l : 1.5;
// font weights
$weight-light : 200;
$weight-book : 300;
$weight-regular : 400; // default
$weight-medium : 500;
$weight-bold : 700;
// grid gutters (for .has-gutter-* classes)
$grid-gutters: ( '': 1rem, '-l': 2rem, '-xl': 4rem );