2019-08-31 20:51:14 -07:00
|
|
|
// comes from design specs
|
|
|
|
$height: 144px;
|
|
|
|
$font-size: 24px;
|
2017-03-24 20:19:44 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A hero Jumbotron like component that acts as a visual container for sub-components.
|
|
|
|
* Sub-components will be visually centered along either axis
|
|
|
|
*/
|
|
|
|
.nacho-hero {
|
|
|
|
@include flex-column-center;
|
|
|
|
height: $height;
|
|
|
|
background-color: $brand-color;
|
|
|
|
color: $text-invert-color;
|
2019-08-31 20:51:14 -07:00
|
|
|
margin: item-spacing(0 0 5 0);
|
2017-03-24 20:19:44 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The header element of the hero
|
|
|
|
*/
|
|
|
|
&__header {
|
|
|
|
font-size: $font-size;
|
|
|
|
line-height: $font-size;
|
2019-08-31 20:51:14 -07:00
|
|
|
margin: item-spacing(0 0 5 0);
|
2017-03-24 20:19:44 -07:00
|
|
|
}
|
|
|
|
}
|