2018-01-23 15:38:38 +03:00
|
|
|
:root {
|
|
|
|
--jumbotron-padding-y: 3rem;
|
2017-08-31 15:49:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.jumbotron {
|
2018-01-23 15:38:38 +03:00
|
|
|
padding-top: var(--jumbotron-padding-y);
|
|
|
|
padding-bottom: var(--jumbotron-padding-y);
|
2017-08-31 15:49:19 +03:00
|
|
|
margin-bottom: 0;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2018-01-23 15:38:38 +03:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
.jumbotron {
|
|
|
|
padding-top: calc(var(--jumbotron-padding-y) * 2);
|
|
|
|
padding-bottom: calc(var(--jumbotron-padding-y) * 2);
|
|
|
|
}
|
|
|
|
}
|
2017-08-31 15:49:19 +03:00
|
|
|
|
|
|
|
.jumbotron p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.jumbotron-heading {
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.jumbotron .container {
|
|
|
|
max-width: 40rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
padding-top: 3rem;
|
|
|
|
padding-bottom: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer p {
|
|
|
|
margin-bottom: .25rem;
|
|
|
|
}
|
2018-01-23 15:38:38 +03:00
|
|
|
|
|
|
|
.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
|