_defaults.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // base unit definition and width/heights for other stuff
  2. // ======================================================================
  3. // base unit - default font-size * line-height in rem and half/double
  4. $base-line-height: map-get(map-get($font-config, default), line-height);
  5. $base-font-size: map-get($font-sizes, default);
  6. $base-unit-in-px: $base-font-size * $base-line-height;
  7. $base-unit: 1rem * $base-line-height;
  8. $base-half: $base-unit / 2;
  9. $base-double: $base-unit * 2;
  10. // globally used width and height declarations
  11. // ======================================================================
  12. // same as icon + margin
  13. $width-icon: $base-unit * 1.2 + $base-half;
  14. // overrides and customization
  15. // ======================================================================
  16. // if you want to customize any of the values maps and values that
  17. // are set by default in the later to be included tools, mixins and
  18. // function (such as z-indexes) please add them here, before including
  19. // the actual mixins, for example, override the z-indexes map from
  20. // frckl-tools/_z-index.scss
  21. // $z-indexes: (
  22. // whale: 1000,
  23. // elephant: 900,
  24. // tiger: 800,
  25. // dog: 700,
  26. // cat: 700,
  27. // mouse: 500,
  28. // worm: -1
  29. // );