index-main/assets/css/partials/_page-header.scss

61 lines
1.2 KiB
SCSS
Raw Permalink Normal View History

2026-01-27 16:55:02 +01:00
.page__type{
height: calc(var(--h-block)*0.75);
border-radius: var(--radius-small);
border: var(--border-medium);
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 1.5ch;
padding-top: 3px;
font-size: var(--fs-small);
line-height: 1;
background-color: var(--color-bg);
color: var(--color-txt-light);
overflow: hidden;
white-space: nowrap;
text-transform: uppercase;
}
2026-01-28 01:03:42 +01:00
2026-01-27 16:55:02 +01:00
main .page__header {
2026-01-27 23:52:25 +01:00
margin-top: calc(var(--spacing) * 3);
2026-01-27 16:55:02 +01:00
margin-bottom: calc(var(--spacing) * 2);
2026-01-28 00:05:06 +01:00
@media #{$small} {
2026-01-27 23:52:25 +01:00
margin-top: calc(var(--spacing) * 2);
}
2026-01-27 16:55:02 +01:00
.page__title {
max-width: var(--max-w-content);
text-transform: uppercase;
font-weight: normal;
font-size: var(--fs-big);
line-height: var(--leading-tight);
margin-top: calc(var(--spacing) * 1);
margin-bottom: calc(var(--spacing) * 0.5);
text-wrap: balance;
}
.description {
2026-01-27 18:51:58 +01:00
// max-width: 68ch;
font-size: var(--fs-medium);
max-width: 58ch;
line-height: 1.1;
2026-01-27 16:55:02 +01:00
}
.description-medium{
font-size: var(--fs-medium);
max-width: 58ch;
line-height: 1.1;
}
}