1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 05:58:25 +01:00
bootstrap/less/jumbotron.less

33 lines
573 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;
2013-01-16 15:07:57 -08:00
font-size: 21px;
font-weight: 200;
line-height: @line-height-base * 1.5;
color: @jumbotron-lead-color;
background-color: @jumbotron-background;
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: 768px) {
.jumbotron {
padding: 50px 60px;
2013-01-31 18:11:45 -08:00
border-radius: 6px; // Only round corners at higher resolutions
2013-01-16 15:07:57 -08:00
h1 {
font-size: 60px;
}
}
}