0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/less/jumbotron.less

30 lines
615 B
Plaintext
Raw Normal View History

2012-06-28 21:46:45 -07:00
//
// Jumbotron
2012-06-28 21:46:45 -07:00
// --------------------------------------------------
.jumbotron {
2013-01-16 15:07:57 -08:00
padding: 30px;
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 17:19:47 -07:00
background-color: @jumbotron-bg;
h1 {
line-height: 1;
color: @jumbotron-heading-color;
}
2013-01-16 15:07:57 -08:00
p {
line-height: 1.4;
}
@media screen and (min-width: @screen-tablet) {
2013-01-16 15:07:57 -08:00
padding: 50px 60px;
border-radius: @border-radius-large; // Only round corners at higher resolutions
2013-01-16 15:07:57 -08:00
h1 {
font-size: (@font-size-base * 4.5);
2013-01-16 15:07:57 -08:00
}
}
}