1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/less/jumbotron.less

41 lines
776 B
Text
Raw Normal View History

2012-06-29 00:46:45 -04:00
//
// Jumbotron
2012-06-29 00:46:45 -04:00
// --------------------------------------------------
.jumbotron {
padding: 30px 15px;
margin-bottom: 30px;
font-size: (@font-size-base * 1.5);
font-weight: 200;
line-height: (@line-height-base * 1.5);
color: @jumbotron-lead-color;
2013-03-31 20:19:47 -04:00
background-color: @jumbotron-bg;
h1 {
line-height: 1;
color: @jumbotron-heading-color;
}
2013-01-16 18:07:57 -05:00
p {
line-height: 1.4;
}
.container & {
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
}
@media screen and (min-width: @screen-tablet) {
padding-top: 50px;
padding-bottom: 50px;
.container & {
padding-left: 60px;
padding-right: 60px;
}
2013-01-16 18:07:57 -05:00
h1 {
font-size: (@font-size-base * 4.5);
2013-01-16 18:07:57 -05:00
}
}
}