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) {
|
2020-01-10 06:49:07 +00:00
|
|
|
color: themed('terms-title-color');
|
|
|
|
text-shadow: 1.2px 1.2px 0 themed('terms-title-color'),
|
|
|
|
2.4px 2.4px 0 lighten(themed('terms-title-shadow-color'), 4%),
|
|
|
|
3.6px 3.6px 0 lighten(themed('terms-title-shadow-color'), 8%),
|
|
|
|
4.8px 4.8px 0 lighten(themed('terms-title-shadow-color'), 12%);
|
2020-01-10 06:13:21 +00:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|