28 lines
567 B
SCSS
28 lines
567 B
SCSS
|
|
/* ==========================================================================
|
||
|
|
Hero styles
|
||
|
|
========================================================================== */
|
||
|
|
|
||
|
|
.hero-body {
|
||
|
|
padding-top: 6rem;
|
||
|
|
padding-bottom: 6rem;
|
||
|
|
.title, .subtitle {
|
||
|
|
font-family: 'Open Sans', sans-serif;
|
||
|
|
}
|
||
|
|
.title {
|
||
|
|
&.is-bold {
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.subtitle {
|
||
|
|
&.is-muted {
|
||
|
|
color: $muted-grey;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-foot {
|
||
|
|
img.partner-logo {
|
||
|
|
height: 70px;
|
||
|
|
}
|
||
|
|
}
|