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