Bootstrap reboot

This commit is contained in:
Raphael Goetter 2017-10-18 08:24:39 +02:00
parent d23ef90a0c
commit 7a2cca515b
6 changed files with 355 additions and 466 deletions

View file

@ -10,13 +10,13 @@ $large : 992px !default;
$extra-large : 1200px !default;
// font sizes
$font-size-base : 1.6rem; // ex. 1.6rem would be "16px" equivalent
$h1-size : 3.2rem; // equiv "32px"
$h2-size : 2.8rem; // equiv "28px"
$h3-size : 2.4rem; // equiv "24px"
$h4-size : 2.0rem; // equiv "20px"
$h5-size : 1.8rem; // equiv "18px"
$h6-size : 1.6rem; // equiv "16px"
$font-size-base : 1.6rem !default; // 1.6rem value is "16px" equivalent
$h1-size : 3.2rem !default;
$h2-size : 2.8rem !default;
$h3-size : 2.4rem !default;
$h4-size : 2.0rem !default;
$h5-size : 1.8rem !default;
$h6-size : 1.6rem !default;
// font families
$font-family-base : -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; // system font stack
@ -24,19 +24,19 @@ $font-family-headings : sans-serif; // font for h1, h2.. h6
$font-family-monospace : consolas, courier, monospace; // font for code and samples
// line heights
$line-height-s : 1.3;
$line-height-base : 1.5;
$line-height-l : 1.7;
$line-height-s : 1.3 !default;
$line-height-base : 1.5 !default;
$line-height-l : 1.7 !default;
// font weights
$weight-light : 200;
$weight-book : 300;
$weight-regular : 400; // default
$weight-medium : 500;
$weight-bold : 700;
$weight-light : 200 !default;
$weight-book : 300 !default;
$weight-regular : 400 !default;
$weight-medium : 500 !default;
$weight-bold : 700 !default;
// grid gutters (for .has-gutter-* classes)
$grid-gutters: ( '': 1rem, '-l': 2rem, '-xl': 4rem );
$grid-gutters: ( '': 1rem, '-l': 2rem, '-xl': 4rem ) !default;
// global border-radius
$border-radius: 0 !default;