index-main/assets/css/template/_investigation.scss

137 lines
2.7 KiB
SCSS
Raw Normal View History

[data-template="investigation"] main {
2026-01-13 14:12:50 +01:00
position: relative;
2026-02-18 16:40:20 +01:00
.page__header {
2026-02-03 08:24:43 +01:00
margin-inline: auto;
max-width: var(--max-w-content);
2026-02-18 18:17:48 +01:00
margin-bottom: 0px;
.description{
margin-bottom: 0px;
}
2026-02-03 08:24:43 +01:00
}
2026-02-18 16:40:20 +01:00
.page__content{
max-width: 100%;
2026-01-23 17:38:08 +01:00
}
2026-02-18 16:40:20 +01:00
.investigation__content{
font-size: var(--fs-text);
2026-01-23 17:38:08 +01:00
}
2026-01-25 22:25:08 +01:00
2026-02-18 16:40:20 +01:00
// @media screen and (max-width: 1340px) {
// margin-left: auto;
// margin-right: calc(var(--padding-body) * 3);
// .panel-left {
// width: calc(100vw - var(--max-w-cards) - var(--padding-body) * 6);
// }
// }
2026-01-23 17:38:08 +01:00
2026-02-18 16:40:20 +01:00
// @media screen and (max-width: 1220px) {
// margin-left: auto;
// margin-right: 0px;
// width: calc(100% - var(--panel-w) * 0.5 - var(--padding-body));
// .panel-left {
// width: calc(var(--panel-w) * 0.5);
// }
// }
// .section__article {
// background-color: red;
// margin-top: calc(var(--spacing) * 3);
// margin-bottom: calc(var(--spacing) * 3);
// max-width: var(--max-w-content);
// margin-inline: auto;
// &:target {
// padding-top: calc(var(--header-h) + var(--spacing) * 1);
// }
// a:hover {
// color: var(--grey-200);
// }
// .section__title {
// font-weight: 500;
// text-transform: uppercase;
// margin-bottom: calc(var(--spacing) * 1);
// padding-right: 2ch;
// text-wrap: balance;
// }
// }
2026-01-13 14:12:50 +01:00
2026-02-03 08:24:43 +01:00
2026-02-18 16:40:20 +01:00
#investigation__dl {
2026-01-13 14:12:50 +01:00
margin-top: calc(var(--spacing) * 1.5);
border-bottom: var(--border-light);
2026-02-03 08:24:43 +01:00
max-width: var(--max-w-content);
margin-inline: auto;
2026-02-18 16:40:20 +01:00
font-size: var(--fs-normal);
2026-01-06 11:19:25 +01:00
2026-01-13 14:12:50 +01:00
.dl__group {
@include grid-content();
2026-02-07 15:59:34 +01:00
column-gap: 1ch;
2026-01-13 14:12:50 +01:00
border-top: var(--border-light);
padding: calc(var(--spacing) * 0.5) 0;
2026-01-06 11:19:25 +01:00
}
2026-01-13 14:12:50 +01:00
dt {
color: var(--color-txt-light);
padding-right: 1ch;
2026-01-06 11:19:25 +01:00
}
2026-01-06 15:43:31 +01:00
2026-01-13 14:12:50 +01:00
ul:not(.keywords) {
list-style: none;
2026-01-23 17:38:08 +01:00
2026-01-13 14:12:50 +01:00
li {
padding-bottom: 0.2em;
}
}
}
2026-01-06 15:43:31 +01:00
2026-01-23 17:38:08 +01:00
2026-02-18 16:40:20 +01:00
.investigation__aside{
max-width: var(--max-w-cards);
2026-02-18 18:17:48 +01:00
margin-inline: auto;
padding-top: calc(var(--spacing)*4);
2026-01-06 15:43:31 +01:00
2026-02-18 16:40:20 +01:00
.aside__title{
font-weight: 500;
2026-02-18 16:40:20 +01:00
text-transform: uppercase;
margin-bottom: calc(var(--spacing)*1)
2026-01-13 14:12:50 +01:00
}
}
2026-02-18 16:40:20 +01:00
2026-01-23 17:38:08 +01:00
2026-01-06 11:19:25 +01:00
// SMALL ----------------------------------------------------------
// ----------------------------------------------------------------
2026-02-18 16:40:20 +01:00
// @media #{$small} {
// [data-template="investigation"] main {
// width: 100%;
2026-02-18 16:40:20 +01:00
// header {
// margin-bottom: calc(var(--spacing) * 1);
// }
2026-01-06 11:19:25 +01:00
2026-02-18 16:40:20 +01:00
// .section__article {
// margin-top: calc(var(--spacing) * 2);
// margin-bottom: calc(var(--spacing) * 2);
// }
// .panel-left {
// display: none;
// }
// }
2026-01-06 11:19:25 +01:00
}