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-18 12:14:32 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|