twbs--bootstrap/scss/_jumbotron.scss

37 lines
671 B
SCSS
Raw Normal View History

2014-12-02 22:02:35 +00:00
//
// Jumbotron
// --------------------------------------------------
.jumbotron {
padding: $jumbotron-padding ($jumbotron-padding / 2);
margin-bottom: $jumbotron-padding;
color: $jumbotron-color;
background-color: $jumbotron-bg;
2014-12-31 18:20:12 +00:00
@include border-radius($border-radius-lg);
2014-12-02 22:02:35 +00:00
}
.jumbotron-heading {
color: $jumbotron-heading-color;
}
.jumbotron-hr {
border-top-color: darken($jumbotron-bg, 10%);
}
@include media-sm {
.jumbotron {
2014-12-31 18:20:12 +00:00
padding: ($jumbotron-padding * 2) $jumbotron-padding;
2014-12-02 22:02:35 +00:00
}
.jumbotron-heading {
font-size: ($font-size-base * 4.5);
}
}
2014-12-31 18:20:12 +00:00
.jumbotron-fluid {
padding-right: 0;
2014-12-31 18:37:23 +00:00
padding-left: 0;
2014-12-31 18:20:12 +00:00
@include border-radius(0);
}