47 lines
610 B
CSS
Executable File
47 lines
610 B
CSS
Executable File
.heroBanner {
|
|
padding: 4rem 0;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.heroBannerLogo {
|
|
max-width: 300px;
|
|
}
|
|
|
|
@media screen and (max-width: 966px) {
|
|
.heroBanner {
|
|
padding: 2rem;
|
|
}
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.sectionTitle {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.sectionTagline {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.sectionAlt {
|
|
background-color: var(--ifm-color-emphasis-100);
|
|
}
|
|
|
|
.sectionPrimary {
|
|
background-color: var(--ifm-color-primary);
|
|
}
|
|
|
|
.sectionPrimaryTitle {
|
|
color: var(--ifm-color-white);
|
|
}
|
|
|
|
.quote {
|
|
font-size: 1.1rem;
|
|
}
|