_bootstrap_config.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // TYPOGRAPHY
  2. $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
  3. $font-family-serif: Georgia, "Times New Roman", Times, serif;
  4. $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
  5. $font-family-base: $font-family-sans-serif;
  6. $font-size-base: 14px;
  7. $font-size-large: ceil(($font-size-base * 1.25)); // ~18px
  8. $font-size-small: ceil(($font-size-base * 0.85)); // ~12px
  9. $font-size-h1: floor(($font-size-base * 2.6)); // ~36px
  10. $font-size-h2: floor(($font-size-base * 2.15)); // ~30px
  11. $font-size-h3: ceil(($font-size-base * 1.7)); // ~24px
  12. $font-size-h4: ceil(($font-size-base * 1.25)); // ~18px
  13. $font-size-h5: $font-size-base;
  14. $font-size-h6: ceil(($font-size-base * 0.85)); // ~12px
  15. $line-height-base: 1.428571429; // 20/14
  16. $line-height-computed: floor(($font-size-base * $line-height-base)); // ~20px
  17. $headings-font-family: inherit;
  18. $headings-font-weight: 500;
  19. $headings-line-height: 1.1;
  20. $headings-color: inherit;
  21. //== Iconography
  22. //
  23. //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
  24. //** Load fonts from this directory.
  25. // [converter] If $bootstrap-sass-asset-helper if used, provide path relative to the assets load path.
  26. // [converter] This is because some asset helpers, such as Sprockets, do not work with file-relative paths.
  27. //== Jumbotron
  28. //
  29. //##
  30. $jumbotron-padding: 10px !default;