mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-02-02 02:49:14 +01:00
c049484e4c
- Updated frameworks for better browser support - Improved responsive design - Versioned documentation - Better social media support via the Jekyll SEO plugin - New looks, fwiw - Start page has some more relevant info - Documentation sorted to be more easily accessible - Internally upgraded from plain CSS to SASS
18 lines
405 B
SCSS
18 lines
405 B
SCSS
.jumbotron {
|
|
padding: $jumbotron-padding ($jumbotron-padding / 2);
|
|
margin-bottom: $jumbotron-padding;
|
|
color: $jumbotron-color;
|
|
background-color: $jumbotron-bg;
|
|
@include border-radius($border-radius-lg);
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
padding: ($jumbotron-padding * 2) $jumbotron-padding;
|
|
}
|
|
}
|
|
|
|
.jumbotron-fluid {
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
@include border-radius(0);
|
|
}
|