hugo-theme-zzo/assets/sass/layout/_header.scss

22 lines
482 B
SCSS
Raw Normal View History

2019-11-04 13:09:44 +00:00
.header {
@include flexbox();
@include align-items(center);
@include justify-content(center);
2019-11-12 00:05:49 +00:00
@include flex-direction(column);
2019-11-04 13:09:44 +00:00
.title {
font-family: $header_title_font;
2019-11-04 13:09:44 +00:00
font-weight: 900;
}
&__image {
2019-11-15 09:29:35 +00:00
background-image: url("../images/header/background.jpg"),
url("../images/header/background.png");
width: 100%;
height: 300px;
background-size: cover;
background-repeat: no-repeat;
position: relative;
margin-bottom: 2rem;
}
2019-11-04 13:09:44 +00:00
}