diff options
| author | Chris Rebert <[email protected]> | 2013-08-20 17:49:17 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-08-20 17:49:23 -0700 |
| commit | 9a4fbde4617da20490381da6dadd02507e67b693 (patch) | |
| tree | f6f1fc979b01c206ac5db52eb82b777fd8e17a40 /less/type.less | |
| parent | d666a89621ff85612390b3a0587e687eaae21060 (diff) | |
| download | bootstrap-9a4fbde4617da20490381da6dadd02507e67b693.tar.xz bootstrap-9a4fbde4617da20490381da6dadd02507e67b693.zip | |
add variables for heading font sizes; fixes #9921
Diffstat (limited to 'less/type.less')
| -rw-r--r-- | less/type.less | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/less/type.less b/less/type.less index c40a89106..590cbcbb4 100644 --- a/less/type.less +++ b/less/type.less @@ -72,12 +72,12 @@ h6 { margin-bottom: (@line-height-computed / 2); } -h1, .h1 { font-size: floor(@font-size-base * 2.60); } // ~36px -h2, .h2 { font-size: floor(@font-size-base * 2.15); } // ~30px -h3, .h3 { font-size: ceil(@font-size-base * 1.70); } // ~24px -h4, .h4 { font-size: ceil(@font-size-base * 1.25); } // ~18px -h5, .h5 { font-size: @font-size-base; } -h6, .h6 { font-size: ceil(@font-size-base * 0.85); } // ~12px +h1, .h1 { font-size: @font-size-h1; } +h2, .h2 { font-size: @font-size-h2; } +h3, .h3 { font-size: @font-size-h3; } +h4, .h4 { font-size: @font-size-h4; } +h5, .h5 { font-size: @font-size-h5; } +h6, .h6 { font-size: @font-size-h6; } h1 small, .h1 small { font-size: ceil(@font-size-base * 1.70); } // ~24px h2 small, .h2 small { font-size: ceil(@font-size-base * 1.25); } // ~18px |
