index-main/assets/css/template/_page-single.scss

51 lines
1 KiB
SCSS
Raw Normal View History

2026-02-24 17:42:51 +01:00
.main__single {
.page__header{
max-width: var(--max-w-content);
border-bottom: var(--border-light);
padding-bottom: calc(var(--spacing)*1);
.page__description{
margin-bottom: calc(var(--spacing)*1);
}
@include figure-16-9();
}
.page__content{
max-width: var(--max-w-content);
margin-top: calc(var(--spacing)*3);
2026-02-25 14:14:37 +01:00
@media #{$small} {
margin-top: calc(var(--spacing)*1.25);
}
2026-02-24 17:42:51 +01:00
}
}
2026-02-25 18:51:58 +01:00
.page__header + #related-investigations{
padding-top: calc(var(--spacing) * 1);
@media #{$small} {
padding-top: 0;
}
2026-02-26 17:02:34 +01:00
}
[data-template="newsletter"],
[data-template="about"],
[data-template="privacy-policy"],
[data-template="legal-notices"]{
.page__header{
border-bottom: none;
padding-bottom: 0px;
.page__title{
text-align: center;
border-bottom: var(--border-medium);
padding-bottom: calc(var(--spacing) * 0.5);
}
}
2026-02-25 18:51:58 +01:00
}