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 {
|
2020-01-10 06:13:21 +00:00
|
|
|
@include flexbox();
|
2019-11-18 12:14:32 +00:00
|
|
|
@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;
|
2020-01-10 06:13:21 +00:00
|
|
|
|
|
|
|
&--shadow {
|
|
|
|
@include themify($themes) {
|
|
|
|
text-shadow: 1px 1px 0 themed('terms-title-color'),
|
|
|
|
2px 2px 0 lighten(themed('terms-title-shadow-color'), 4%),
|
|
|
|
3px 3px 0 lighten(themed('terms-title-shadow-color'), 8%),
|
|
|
|
4px 4px 0 lighten(themed('terms-title-shadow-color'), 12%);
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|