font weights variables
This commit is contained in:
parent
973a5e6d64
commit
8fc558370f
1 changed files with 13 additions and 4 deletions
|
@ -27,15 +27,24 @@ $h4-size-l : 2.0rem; // equiv "20px"
|
||||||
$h5-size-l : 1.8rem; // equiv "18px"
|
$h5-size-l : 1.8rem; // equiv "18px"
|
||||||
$h6-size-l : 1.6rem; // equiv "16px"
|
$h6-size-l : 1.6rem; // equiv "16px"
|
||||||
|
|
||||||
$line-height-s : 1.1;
|
|
||||||
$line-height : 1.3;
|
|
||||||
$line-height-l : 1.5;
|
|
||||||
|
|
||||||
// font stacks
|
// font stacks
|
||||||
$font-stack-common : -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; // system font stack
|
$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-headings : sans-serif; // font for h1, h2.. h6
|
||||||
$font-stack-monospace : consolas, courier, monospace; // font for code and samples
|
$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 (for .has-gutter-* classes)
|
||||||
$grid-gutters: ( '': 1rem, '-l': 2rem, '-xl': 4rem );
|
$grid-gutters: ( '': 1rem, '-l': 2rem, '-xl': 4rem );
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue