| 12345678910111213141516171819202122232425262728293031323334353637 |
- // base unit definition and width/heights for other stuff
- // ======================================================================
- // base unit - default font-size * line-height in rem and half/double
- $base-line-height: map-get(map-get($font-config, default), line-height);
- $base-font-size: map-get($font-sizes, default);
- $base-unit-in-px: $base-font-size * $base-line-height;
- $base-unit: 1rem * $base-line-height;
- $base-half: $base-unit / 2;
- $base-double: $base-unit * 2;
- // globally used width and height declarations
- // ======================================================================
- // same as icon + margin
- $width-icon: $base-unit * 1.2 + $base-half;
- // overrides and customization
- // ======================================================================
- // if you want to customize any of the values maps and values that
- // are set by default in the later to be included tools, mixins and
- // function (such as z-indexes) please add them here, before including
- // the actual mixins, for example, override the z-indexes map from
- // frckl-tools/_z-index.scss
- // $z-indexes: (
- // whale: 1000,
- // elephant: 900,
- // tiger: 800,
- // dog: 700,
- // cat: 700,
- // mouse: 500,
- // worm: -1
- // );
|