38 lines
577 B
CSS
38 lines
577 B
CSS
@import url("components/theme.css");
|
|
|
|
.jumbotron {
|
|
margin-bottom: 1.25rem;
|
|
border-radius: 0;
|
|
min-height: 12.5rem;
|
|
}
|
|
|
|
.jumbotron h1 {
|
|
font-weight: 300;
|
|
font-size: 3.2rem;
|
|
margin-top: -2.8rem;
|
|
}
|
|
|
|
.jumbotron p {
|
|
padding: 0.4rem 0 0 0;
|
|
font-size: 1.5rem;
|
|
font-weight: 300;
|
|
margin-bottom: 0.6rem;
|
|
}
|
|
|
|
@media(max-width: 576px) {
|
|
.jumbotron p {
|
|
padding: 0.4rem 0 0 0;
|
|
font-size: 1rem;
|
|
font-weight: 300;
|
|
margin-bottom: 0.6rem;
|
|
}
|
|
.jumbotron h1 {
|
|
font-size: 3.2rem;
|
|
margin-top: 0px;
|
|
}
|
|
}
|
|
|
|
#main {
|
|
min-height: calc(100vh - 28.25rem);
|
|
}
|