0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-06 04:08:22 +01:00

Jumbotron: remove the hard-coded font-size from jumbotron.less and moved it into variables.less where other .font-size-xxxxx things now live.

This commit is contained in:
Steven Black 2013-10-04 21:43:31 -04:00
parent 56ee42d335
commit 38941881e9
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
.jumbotron { .jumbotron {
padding: @jumbotron-padding; padding: @jumbotron-padding;
margin-bottom: @jumbotron-padding; margin-bottom: @jumbotron-padding;
font-size: (@font-size-base * 1.5); font-size: @font-size-jumbotron;
font-weight: 200; font-weight: 200;
line-height: (@line-height-base * 1.5); line-height: (@line-height-base * 1.5);
color: @jumbotron-color; color: @jumbotron-color;

View File

@ -368,8 +368,8 @@
@jumbotron-padding: 30px; @jumbotron-padding: 30px;
@jumbotron-color: inherit; @jumbotron-color: inherit;
@jumbotron-bg: @gray-lighter; @jumbotron-bg: @gray-lighter;
@jumbotron-heading-color: inherit; @jumbotron-heading-color: inherit;
@font-size-jumbotron: ceil(@font-size-base * 1.50);
// Form states and alerts // Form states and alerts