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 {
|
2019-11-26 16:06:24 +00:00
|
|
|
font-family: $title-font;
|
2019-11-04 13:09:44 +00:00
|
|
|
font-weight: 900;
|
|
|
|
}
|
2019-11-11 03:11:03 +00:00
|
|
|
|
2019-11-15 08:37:32 +00:00
|
|
|
&__image {
|
2019-11-15 09:29:35 +00:00
|
|
|
background-image: url("../images/header/background.jpg"),
|
|
|
|
url("../images/header/background.png");
|
2019-11-11 03:11:03 +00:00
|
|
|
width: 100%;
|
2019-11-18 12:14:32 +00:00
|
|
|
height: 235px;
|
2019-11-15 08:37:32 +00:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
position: relative;
|
2019-11-18 12:14:32 +00:00
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-05 10:04:42 +00:00
|
|
|
.site-header {
|
2019-11-18 12:14:32 +00:00
|
|
|
@include flexbox();
|
|
|
|
@include justify-content(center);
|
|
|
|
@include flex-direction(column);
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
line-height: 1.1;
|
|
|
|
font-weight: 700;
|
2019-11-26 16:06:24 +00:00
|
|
|
font-family: $title-font;
|
2019-11-18 12:14:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__subtitle {
|
|
|
|
line-height: 1.2;
|
2019-11-26 16:06:24 +00:00
|
|
|
font-family: $title-font;
|
2019-11-18 12:14:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__align-left {
|
|
|
|
@include align-items(flex-start);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__align-center {
|
|
|
|
@include align-items(center);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__align-right {
|
|
|
|
@include align-items(flex-end);
|
2019-11-11 03:11:03 +00:00
|
|
|
}
|
2019-11-04 13:09:44 +00:00
|
|
|
}
|