2018-03-12 19:31:14 +00:00
|
|
|
|
|
|
|
.hero-header {
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
2018-06-04 14:30:53 +00:00
|
|
|
height: 500px;
|
2018-03-12 19:31:14 +00:00
|
|
|
background-size: cover;
|
|
|
|
color: $white;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-header .heading {
|
|
|
|
flex: 0 1 auto;
|
2018-07-05 01:18:42 +00:00
|
|
|
padding: 0 7em;
|
2018-03-12 19:31:14 +00:00
|
|
|
}
|
2018-06-04 14:30:53 +00:00
|
|
|
|
2019-03-20 17:43:55 +00:00
|
|
|
.hero-header small {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post .hero-header small {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-07-05 01:18:42 +00:00
|
|
|
.hero-header .author {
|
|
|
|
display: block;
|
|
|
|
margin-top: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.author > a {
|
|
|
|
color: $white;
|
|
|
|
border: none;
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
border-bottom: 1px solid $black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.author > i:last-child {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
background: $black;
|
2018-06-04 14:30:53 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2018-07-05 01:18:42 +00:00
|
|
|
|
|
|
|
.hero-icon > svg {
|
|
|
|
width: 13px;
|
|
|
|
height: 13px;
|
|
|
|
fill: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $mq-small) {
|
|
|
|
.hero-header .heading {
|
|
|
|
padding: 1em 2em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: $mq-medium) {
|
|
|
|
.hero-icon {
|
|
|
|
line-height: 1.3;
|
|
|
|
}
|
|
|
|
}
|