forked from cryptohagen.dk/website
Jesper Hess
f68ff9a945
Moved bootstrap folder into _sass/bootstrap Moved cryptohagen.scss to /assets/css Added frontmatter to cryptohagen.scss
21 lines
445 B
SCSS
21 lines
445 B
SCSS
.jumbotron {
|
|
padding: $jumbotron-padding ($jumbotron-padding / 2);
|
|
margin-bottom: $jumbotron-padding;
|
|
background-color: $jumbotron-bg;
|
|
@include border-radius($border-radius-lg);
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
padding: ($jumbotron-padding * 2) $jumbotron-padding;
|
|
}
|
|
}
|
|
|
|
.jumbotron-hr {
|
|
border-top-color: darken($jumbotron-bg, 10%);
|
|
}
|
|
|
|
.jumbotron-fluid {
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
@include border-radius(0);
|
|
}
|