aside investigatins
This commit is contained in:
parent
243583d024
commit
0c767e2e5e
15 changed files with 418 additions and 725 deletions
|
|
@ -6,12 +6,17 @@
|
||||||
--fs-xsmall: 12px;
|
--fs-xsmall: 12px;
|
||||||
--fs-small: 16px;
|
--fs-small: 16px;
|
||||||
--fs-normal: 20px;
|
--fs-normal: 20px;
|
||||||
--fs-medium: 30px;
|
--fs-text: 24px;
|
||||||
|
--fs-medium: 34px;
|
||||||
--fs-big: 45px;
|
--fs-big: 45px;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--fs-button-bold: 22px;
|
--fs-button-bold: 22px;
|
||||||
|
|
||||||
--max-w-content: 640px;
|
--max-w-content: 700px;
|
||||||
--max-w-cards: 940px;
|
--max-w-cards: 940px;
|
||||||
--z-header: 2000;
|
--z-header: 2000;
|
||||||
--panel-w: 310px;
|
--panel-w: 310px;
|
||||||
|
|
@ -82,6 +87,7 @@
|
||||||
--fs-xsmall: 13px;
|
--fs-xsmall: 13px;
|
||||||
--fs-small: 16px;
|
--fs-small: 16px;
|
||||||
--fs-normal: 20px;
|
--fs-normal: 20px;
|
||||||
|
--fs-text: 20px;
|
||||||
--fs-medium: 24px;
|
--fs-medium: 24px;
|
||||||
--fs-big: 34px;
|
--fs-big: 34px;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,18 @@
|
||||||
|
.card--package,
|
||||||
.card--article-small {
|
.card--article-small {
|
||||||
|
|
||||||
@include grid-content();
|
@include grid-content();
|
||||||
|
|
||||||
padding-top: calc(var(--spacing)*0.5);
|
margin-bottom: calc(var(--spacing)*0.75);
|
||||||
padding-bottom: calc(var(--spacing)*0.5);
|
border: var(--border-light);
|
||||||
|
|
||||||
border-bottom: var(--border-light);
|
|
||||||
|
|
||||||
&:first-of-type {
|
&:first-of-type {
|
||||||
border-top: var(--border-light);
|
border-top: var(--border-light);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.has-link {
|
// &.has-link {
|
||||||
@include hover-card-line();
|
// @include hover-card-line();
|
||||||
}
|
// }
|
||||||
|
|
||||||
@include figure-16-9();
|
@include figure-16-9();
|
||||||
|
|
||||||
|
|
@ -23,38 +22,79 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.type {
|
||||||
|
|
||||||
|
display: inline-flex;
|
||||||
|
flex-grow: 0;
|
||||||
|
height: calc(var(--h-block)*0.75);
|
||||||
|
border-radius: var(--radius-small);
|
||||||
|
border: var(--border-medium);
|
||||||
|
align-items: center;
|
||||||
|
padding: 5px 1ch 0 1ch;
|
||||||
|
|
||||||
|
|
||||||
|
font-size: var(--fs-xsmall);
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--color-txt-light);
|
||||||
|
margin-bottom: calc(var(--spacing)*0.75);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding-top: calc(var(--spacing)*0.25);
|
align-items: flex-start;
|
||||||
|
justify-content: flex-start;
|
||||||
|
padding-top: calc(var(--padding-inner)*2);
|
||||||
|
padding-bottom: calc(var(--padding-inner)*2);
|
||||||
|
padding-left: calc(var(--padding-inner)*1.5);
|
||||||
padding-right: calc(var(--padding-inner)*3);
|
padding-right: calc(var(--padding-inner)*3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: var(--fs-small);
|
font-size: var(--fs-normal);
|
||||||
margin-bottom: 0.25em;
|
margin-bottom: 0.25em;
|
||||||
text-wrap: balance;
|
text-wrap: balance;
|
||||||
max-width: 42ch;
|
max-width: 42ch;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
line-height: var(--leading-title);
|
line-height: var(--leading-title);
|
||||||
|
flex-grow: 2;
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
time {
|
.date,
|
||||||
flex-grow: 1;
|
.details {
|
||||||
|
// flex-grow: 2;
|
||||||
color: var(--color-txt-light);
|
color: var(--color-txt-light);
|
||||||
|
font-size: var(--fs-small);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.details {
|
||||||
|
list-style: none;
|
||||||
|
|
||||||
|
li {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
li:not(:last-of-type)::after {
|
||||||
|
content: "|";
|
||||||
|
padding-left: 1ch;
|
||||||
|
padding-right: 0.5ch;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.description {
|
.description {
|
||||||
|
font-size: var(--fs-small);
|
||||||
@include clamp(2);
|
@include clamp(2);
|
||||||
margin-bottom: calc(var(--spacing)*0.75);
|
// margin-bottom: calc(var(--spacing)*0.75);
|
||||||
margin-top: calc(var(--spacing)*0.25);
|
margin-top: calc(var(--spacing)*0.25);
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,19 +42,16 @@
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
text-wrap: balance;
|
text-wrap: balance;
|
||||||
// flex-grow: 2;
|
|
||||||
|
|
||||||
a{ text-decoration: none;}
|
a{ text-decoration: none;}
|
||||||
}
|
}
|
||||||
|
|
||||||
.description{
|
.description{
|
||||||
margin-top: calc(var(--spacing)*0.5);
|
margin-top: calc(var(--spacing)*0.5);
|
||||||
|
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
-webkit-line-clamp: 3;
|
-webkit-line-clamp: 3;
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
font-size: var(--fs-small);
|
font-size: var(--fs-small);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -82,16 +79,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.keywords-wrapper{
|
|
||||||
z-index: 3000;
|
|
||||||
margin-top: calc(var(--spacing)*0.5);
|
|
||||||
// margin-bottom: calc(var(--spacing)*0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.keywords{
|
|
||||||
|
|
||||||
grid-column: 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
&:hover{
|
&:hover{
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
.card--impact-small {
|
.card--impact-small {
|
||||||
|
|
||||||
border-bottom: var(--border-light);
|
border-bottom: var(--border-light);
|
||||||
|
|
@ -5,7 +6,6 @@
|
||||||
border-top: var(--border-light);
|
border-top: var(--border-light);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@include grid-content();
|
@include grid-content();
|
||||||
padding: var(--padding-inner) 0;
|
padding: var(--padding-inner) 0;
|
||||||
|
|
||||||
|
|
@ -20,8 +20,16 @@
|
||||||
bottom: auto;
|
bottom: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.title {
|
||||||
grid-column: 2;
|
grid-column: 2;
|
||||||
|
font-size: var(--fs-normal);
|
||||||
|
font-weight: 500;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin-right: 4ch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.date{
|
||||||
|
font-size: var(--fs-small);
|
||||||
}
|
}
|
||||||
|
|
||||||
.card--open-graph {
|
.card--open-graph {
|
||||||
|
|
@ -44,7 +52,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag {
|
.category {
|
||||||
width: auto;
|
width: auto;
|
||||||
justify-self: start;
|
justify-self: start;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
||||||
|
|
@ -1,145 +1,94 @@
|
||||||
.card--package {
|
// .card--package {
|
||||||
position: relative;
|
// position: relative;
|
||||||
max-width: var(--max-w-cards);
|
// max-width: var(--max-w-cards);
|
||||||
border: var(--border-light);
|
// border: var(--border-light);
|
||||||
padding: var(--padding-inner);
|
|
||||||
@include grid-content();
|
|
||||||
@include figure-16-9();
|
|
||||||
|
|
||||||
container-type: inline-size;
|
// @include grid-content();
|
||||||
container-name: cardpackage;
|
// @include figure-16-9();
|
||||||
|
|
||||||
figure {
|
// container-type: inline-size;
|
||||||
border-radius: var(--radius-small);
|
// container-name: cardpackage;
|
||||||
background-color: var(--color-accent);
|
|
||||||
|
|
||||||
img {
|
// figure {
|
||||||
opacity: 0.8;
|
// border-radius: var(--radius-small);
|
||||||
filter: grayscale(1);
|
// background-color: var(--color-accent);
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
// img {
|
||||||
display: flex;
|
// opacity: 0.8;
|
||||||
flex-direction: column;
|
// filter: grayscale(1);
|
||||||
font-size: var(--fs-small);
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
.title {
|
// .content {
|
||||||
font-weight: 500;
|
// display: flex;
|
||||||
font-size: var(--fs-normal);
|
// flex-direction: column;
|
||||||
line-height: var(--leading-title);
|
// font-size: var(--fs-small);
|
||||||
|
// }
|
||||||
|
|
||||||
margin-bottom: 0.75em;
|
// .title {
|
||||||
text-wrap: balance;
|
// font-weight: 500;
|
||||||
max-width: 42ch;
|
// font-size: var(--fs-normal);
|
||||||
text-transform: uppercase;
|
// line-height: var(--leading-title);
|
||||||
padding-top: calc(var(--spacing) * 0.25);
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media #{$small} {
|
// margin-bottom: 0.75em;
|
||||||
font-size: var(--fs-normal);
|
// text-wrap: balance;
|
||||||
}
|
// max-width: 42ch;
|
||||||
|
// text-transform: uppercase;
|
||||||
|
// padding-top: calc(var(--spacing) * 0.25);
|
||||||
|
// a {
|
||||||
|
// text-decoration: none;
|
||||||
|
// }
|
||||||
|
|
||||||
.icon {
|
// @media #{$small} {
|
||||||
padding-right: 1ch;
|
// font-size: var(--fs-normal);
|
||||||
position: relative;
|
// }
|
||||||
top: 1px;
|
|
||||||
svg {
|
|
||||||
height: 15px;
|
|
||||||
width: 15px;
|
|
||||||
fill: var(--color-txt);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.short {
|
// .icon {
|
||||||
@include clamp(3);
|
// padding-right: 1ch;
|
||||||
flex-grow: 1;
|
// position: relative;
|
||||||
padding-right: calc(var(--padding-inner) * 2);
|
// top: 1px;
|
||||||
}
|
// svg {
|
||||||
|
// height: 15px;
|
||||||
|
// width: 15px;
|
||||||
|
// fill: var(--color-txt);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
ul {
|
// .short {
|
||||||
display: flex;
|
// @include clamp(3);
|
||||||
list-style: none;
|
// flex-grow: 1;
|
||||||
gap: 1ch;
|
// padding-right: calc(var(--padding-inner) * 2);
|
||||||
color: var(--color-txt-light);
|
// }
|
||||||
padding-top: calc(var(--spacing) * 0.5);
|
|
||||||
|
|
||||||
li + li {
|
// ul {
|
||||||
&::before {
|
// display: flex;
|
||||||
content: "|";
|
// list-style: none;
|
||||||
padding-right: 1ch;
|
// gap: 1ch;
|
||||||
}
|
// color: var(--color-txt-light);
|
||||||
}
|
// padding-top: calc(var(--spacing) * 0.5);
|
||||||
@media #{$small} {
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn--go-to {
|
// li + li {
|
||||||
position: absolute;
|
// &::before {
|
||||||
right: calc(var(--padding-inner) * 1);
|
// content: "|";
|
||||||
bottom: var(--padding-inner);
|
// padding-right: 1ch;
|
||||||
}
|
// }
|
||||||
|
// }
|
||||||
|
// @media #{$small} {
|
||||||
|
// font-size: var(--fs-small);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
@include btn--go-to();
|
// .btn--go-to {
|
||||||
|
// position: absolute;
|
||||||
|
// right: calc(var(--padding-inner) * 1);
|
||||||
|
// bottom: var(--padding-inner);
|
||||||
|
// }
|
||||||
|
|
||||||
&:hover {
|
// @include btn--go-to();
|
||||||
background-color: var(--grey-950);
|
|
||||||
border-color: var(--color-txt);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[data-template="investigation"] .card--package {
|
// &:hover {
|
||||||
border: none;
|
// background-color: var(--grey-950);
|
||||||
padding-left: 0;
|
// border-color: var(--color-txt);
|
||||||
padding-right: 0;
|
// }
|
||||||
border-bottom: var(--border-light);
|
// }
|
||||||
|
|
||||||
&:first-of-type {
|
|
||||||
border-top: var(--border-light);
|
|
||||||
}
|
|
||||||
&.has-link {
|
|
||||||
@include hover-card-line();
|
|
||||||
}
|
|
||||||
|
|
||||||
figure {
|
|
||||||
@media #{$x-small} {
|
|
||||||
margin-left: 0px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media #{$x-small} {
|
|
||||||
.card--package {
|
|
||||||
.content {
|
|
||||||
display: contents;
|
|
||||||
}
|
|
||||||
figure {
|
|
||||||
grid-row: 1/3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
padding-top: calc(var(--spacing) * 0.25);
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.short {
|
|
||||||
grid-column: span 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
grid-column: 2;
|
|
||||||
grid-row: 2;
|
|
||||||
padding-top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -8,12 +8,12 @@
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
height: calc(var(--h-block)*0.75);
|
height: calc(var(--h-block)*1);
|
||||||
padding: 0 1ch;
|
padding: 0 1ch;
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
border: var(--border-light);
|
border: var(--border-light);
|
||||||
border-radius: var(--radius-btn);
|
border-radius: var(--radius-btn);
|
||||||
font-size: var(--fs-xsmall);
|
font-size: var(--fs-small);
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
.tag{
|
.category{
|
||||||
height: calc(var(--h-block)*0.75);
|
height: calc(var(--h-block)*0.75);
|
||||||
// border-radius: calc(var(--h-block)*0.75/2);
|
// border-radius: calc(var(--h-block)*0.75/2);
|
||||||
border-radius: var(--radius-small);
|
border-radius: var(--radius-small);
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
.page__type{
|
.page__type{
|
||||||
|
|
||||||
height: calc(var(--h-block)*0.75);
|
height: calc(var(--h-block)*1);
|
||||||
border-radius: var(--radius-small);
|
border-radius: var(--radius-small);
|
||||||
border: var(--border-medium);
|
border: var(--border-medium);
|
||||||
|
|
||||||
|
|
@ -8,9 +8,9 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 0 1.5ch;
|
padding: 0 1.5ch;
|
||||||
padding-top: 3px;
|
padding-top: 5px;
|
||||||
|
|
||||||
font-size: var(--fs-xsmall);
|
font-size: var(--fs-small);
|
||||||
|
|
||||||
background-color: var(--color-bg);
|
background-color: var(--color-bg);
|
||||||
color: var(--color-txt-light);
|
color: var(--color-txt-light);
|
||||||
|
|
@ -41,19 +41,19 @@ main .page__header {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
line-height: var(--leading-title);
|
line-height: var(--leading-title);
|
||||||
margin-top: calc(var(--spacing) * 1);
|
margin-top: calc(var(--spacing) * 1);
|
||||||
margin-bottom: calc(var(--spacing) * 0.5);
|
margin-bottom: calc(var(--spacing) * 1.5);
|
||||||
text-wrap: balance;
|
text-wrap: balance;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.description {
|
.description {
|
||||||
// max-width: 58ch;
|
font-size: var(--fs-text);
|
||||||
// line-height: 1.1;
|
margin-bottom: calc(var(--spacing) * 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.description-medium{
|
// .description-medium{
|
||||||
// font-size: var(--fs-medium);
|
// font-size: var(--fs-medium);
|
||||||
max-width: 58ch;
|
// max-width: 58ch;
|
||||||
line-height: 1.1;
|
// line-height: 1.1;
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,11 @@
|
||||||
--fs-xsmall: 12px;
|
--fs-xsmall: 12px;
|
||||||
--fs-small: 16px;
|
--fs-small: 16px;
|
||||||
--fs-normal: 20px;
|
--fs-normal: 20px;
|
||||||
--fs-medium: 30px;
|
--fs-text: 24px;
|
||||||
|
--fs-medium: 34px;
|
||||||
--fs-big: 45px;
|
--fs-big: 45px;
|
||||||
--fs-button-bold: 22px;
|
--fs-button-bold: 22px;
|
||||||
--max-w-content: 640px;
|
--max-w-content: 700px;
|
||||||
--max-w-cards: 940px;
|
--max-w-cards: 940px;
|
||||||
--z-header: 2000;
|
--z-header: 2000;
|
||||||
--panel-w: 310px;
|
--panel-w: 310px;
|
||||||
|
|
@ -62,6 +63,7 @@
|
||||||
--fs-xsmall: 13px;
|
--fs-xsmall: 13px;
|
||||||
--fs-small: 16px;
|
--fs-small: 16px;
|
||||||
--fs-normal: 20px;
|
--fs-normal: 20px;
|
||||||
|
--fs-text: 20px;
|
||||||
--fs-medium: 24px;
|
--fs-medium: 24px;
|
||||||
--fs-big: 34px;
|
--fs-big: 34px;
|
||||||
--header-h: 60px;
|
--header-h: 60px;
|
||||||
|
|
@ -474,7 +476,7 @@ button:disabled {
|
||||||
fill: var(--grey-100);
|
fill: var(--grey-100);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag {
|
.category {
|
||||||
height: calc(var(--h-block) * 0.75);
|
height: calc(var(--h-block) * 0.75);
|
||||||
border-radius: var(--radius-small);
|
border-radius: var(--radius-small);
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
|
|
@ -501,12 +503,12 @@ button:disabled {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
height: calc(var(--h-block) * 0.75);
|
height: calc(var(--h-block) * 1);
|
||||||
padding: 0 1ch;
|
padding: 0 1ch;
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
border: var(--border-light);
|
border: var(--border-light);
|
||||||
border-radius: var(--radius-btn);
|
border-radius: var(--radius-btn);
|
||||||
font-size: var(--fs-xsmall);
|
font-size: var(--fs-small);
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
@ -1282,13 +1284,6 @@ button.sort[data-sort-type=up] .arrow {
|
||||||
.card--article .dl ul li {
|
.card--article .dl ul li {
|
||||||
padding-bottom: 0.2em;
|
padding-bottom: 0.2em;
|
||||||
}
|
}
|
||||||
.card--article .keywords-wrapper {
|
|
||||||
z-index: 3000;
|
|
||||||
margin-top: calc(var(--spacing) * 0.5);
|
|
||||||
}
|
|
||||||
.card--article .keywords {
|
|
||||||
grid-column: 2;
|
|
||||||
}
|
|
||||||
.card--article:hover {
|
.card--article:hover {
|
||||||
border-color: var(--color-txt);
|
border-color: var(--color-txt);
|
||||||
background-color: var(--grey-950);
|
background-color: var(--grey-950);
|
||||||
|
|
@ -1297,48 +1292,29 @@ button.sort[data-sort-type=up] .arrow {
|
||||||
z-index: 2000;
|
z-index: 2000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.card--package,
|
||||||
.card--article-small {
|
.card--article-small {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-gap: var(--padding-inner);
|
grid-gap: var(--padding-inner);
|
||||||
grid-template-columns: 2fr 3fr;
|
grid-template-columns: 2fr 3fr;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-top: calc(var(--spacing) * 0.5);
|
margin-bottom: calc(var(--spacing) * 0.75);
|
||||||
padding-bottom: calc(var(--spacing) * 0.5);
|
border: var(--border-light);
|
||||||
border-bottom: var(--border-light);
|
|
||||||
}
|
}
|
||||||
|
.card--package:first-of-type,
|
||||||
.card--article-small:first-of-type {
|
.card--article-small:first-of-type {
|
||||||
border-top: var(--border-light);
|
border-top: var(--border-light);
|
||||||
}
|
}
|
||||||
.card--article-small.has-link {
|
.card--package > picture, .card--package > figure,
|
||||||
border-bottom: var(--border-light);
|
.card--article-small > picture,
|
||||||
}
|
.card--article-small > figure {
|
||||||
.card--article-small.has-link:first-of-type {
|
|
||||||
border-top: var(--border-light);
|
|
||||||
}
|
|
||||||
.card--article-small.has-link {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.card--article-small.has-link::before {
|
|
||||||
content: "";
|
|
||||||
width: 100%;
|
|
||||||
border-top: 1px solid transparent;
|
|
||||||
position: absolute;
|
|
||||||
top: -1px;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
.card--article-small.has-link:hover {
|
|
||||||
background-color: var(--grey-950);
|
|
||||||
border-color: var(--color-txt);
|
|
||||||
}
|
|
||||||
.card--article-small.has-link:hover::before {
|
|
||||||
border-color: var(--color-txt);
|
|
||||||
}
|
|
||||||
.card--article-small > picture, .card--article-small > figure {
|
|
||||||
aspect-ratio: 16/9;
|
aspect-ratio: 16/9;
|
||||||
display: flex;
|
display: flex;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.card--article-small > picture img, .card--article-small > figure img {
|
.card--package > picture img, .card--package > figure img,
|
||||||
|
.card--article-small > picture img,
|
||||||
|
.card--article-small > figure img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
-o-object-fit: cover;
|
-o-object-fit: cover;
|
||||||
|
|
@ -1346,81 +1322,135 @@ button.sort[data-sort-type=up] .arrow {
|
||||||
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
|
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 560px) {
|
@media screen and (max-width: 560px) {
|
||||||
|
.card--package figure,
|
||||||
.card--article-small figure {
|
.card--article-small figure {
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.card--package .type,
|
||||||
|
.card--article-small .type {
|
||||||
|
display: inline-flex;
|
||||||
|
flex-grow: 0;
|
||||||
|
height: calc(var(--h-block) * 0.75);
|
||||||
|
border-radius: var(--radius-small);
|
||||||
|
border: var(--border-medium);
|
||||||
|
align-items: center;
|
||||||
|
padding: 5px 1ch 0 1ch;
|
||||||
|
font-size: var(--fs-xsmall);
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--color-txt-light);
|
||||||
|
margin-bottom: calc(var(--spacing) * 0.75);
|
||||||
|
}
|
||||||
|
.card--package .content,
|
||||||
.card--article-small .content {
|
.card--article-small .content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding-top: calc(var(--spacing) * 0.25);
|
align-items: flex-start;
|
||||||
|
justify-content: flex-start;
|
||||||
|
padding-top: calc(var(--padding-inner) * 2);
|
||||||
|
padding-bottom: calc(var(--padding-inner) * 2);
|
||||||
|
padding-left: calc(var(--padding-inner) * 1.5);
|
||||||
padding-right: calc(var(--padding-inner) * 3);
|
padding-right: calc(var(--padding-inner) * 3);
|
||||||
}
|
}
|
||||||
|
.card--package .title,
|
||||||
.card--article-small .title {
|
.card--article-small .title {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: var(--fs-small);
|
font-size: var(--fs-normal);
|
||||||
margin-bottom: 0.25em;
|
margin-bottom: 0.25em;
|
||||||
text-wrap: balance;
|
text-wrap: balance;
|
||||||
max-width: 42ch;
|
max-width: 42ch;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
line-height: var(--leading-title);
|
line-height: var(--leading-title);
|
||||||
|
flex-grow: 2;
|
||||||
}
|
}
|
||||||
|
.card--package .title a,
|
||||||
.card--article-small .title a {
|
.card--article-small .title a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
.card--article-small time {
|
.card--package .date,
|
||||||
flex-grow: 1;
|
.card--package .details,
|
||||||
|
.card--article-small .date,
|
||||||
|
.card--article-small .details {
|
||||||
color: var(--color-txt-light);
|
color: var(--color-txt-light);
|
||||||
|
font-size: var(--fs-small);
|
||||||
}
|
}
|
||||||
|
.card--package .details,
|
||||||
|
.card--article-small .details {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
.card--package .details li,
|
||||||
|
.card--article-small .details li {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
.card--package .details li:not(:last-of-type)::after,
|
||||||
|
.card--article-small .details li:not(:last-of-type)::after {
|
||||||
|
content: "|";
|
||||||
|
padding-left: 1ch;
|
||||||
|
padding-right: 0.5ch;
|
||||||
|
}
|
||||||
|
.card--package .description,
|
||||||
.card--article-small .description {
|
.card--article-small .description {
|
||||||
|
font-size: var(--fs-small);
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
-webkit-line-clamp: 2;
|
-webkit-line-clamp: 2;
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: calc(var(--spacing) * 0.75);
|
|
||||||
margin-top: calc(var(--spacing) * 0.25);
|
margin-top: calc(var(--spacing) * 0.25);
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
.card--package,
|
||||||
.card--article-small {
|
.card--article-small {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
.card--package .btn--go-to,
|
||||||
.card--article-small .btn--go-to {
|
.card--article-small .btn--go-to {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: var(--padding-inner);
|
right: var(--padding-inner);
|
||||||
bottom: calc(var(--padding-inner) - 3px);
|
bottom: calc(var(--padding-inner) - 3px);
|
||||||
}
|
}
|
||||||
|
.card--package .btn--go-to svg,
|
||||||
.card--article-small .btn--go-to svg {
|
.card--article-small .btn--go-to svg {
|
||||||
width: 15px;
|
width: 15px;
|
||||||
height: 15px;
|
height: 15px;
|
||||||
fill: var(--color-txt);
|
fill: var(--color-txt);
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 768px) {
|
@media screen and (max-width: 768px) {
|
||||||
|
.card--package .btn--go-to svg,
|
||||||
.card--article-small .btn--go-to svg {
|
.card--article-small .btn--go-to svg {
|
||||||
width: 11px;
|
width: 11px;
|
||||||
height: 11px;
|
height: 11px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 560px) {
|
@media screen and (max-width: 560px) {
|
||||||
|
.card--package .btn--go-to,
|
||||||
.card--article-small .btn--go-to {
|
.card--article-small .btn--go-to {
|
||||||
right: calc(var(--padding-inner) * 0.5);
|
right: calc(var(--padding-inner) * 0.5);
|
||||||
bottom: calc(var(--padding-inner) * 0.25);
|
bottom: calc(var(--padding-inner) * 0.25);
|
||||||
}
|
}
|
||||||
|
.card--package .btn--go-to svg,
|
||||||
.card--article-small .btn--go-to svg {
|
.card--article-small .btn--go-to svg {
|
||||||
width: 11px;
|
width: 11px;
|
||||||
height: 11px;
|
height: 11px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.card--package:hover .btn--go-to,
|
||||||
.card--article-small:hover .btn--go-to {
|
.card--article-small:hover .btn--go-to {
|
||||||
animation: wiggle-left 0.8s ease-in-out;
|
animation: wiggle-left 0.8s ease-in-out;
|
||||||
}
|
}
|
||||||
|
.card--package,
|
||||||
.card--article-small {
|
.card--article-small {
|
||||||
border-bottom: var(--border-light);
|
border-bottom: var(--border-light);
|
||||||
}
|
}
|
||||||
|
.card--package:first-of-type,
|
||||||
.card--article-small:first-of-type {
|
.card--article-small:first-of-type {
|
||||||
border-top: var(--border-light);
|
border-top: var(--border-light);
|
||||||
}
|
}
|
||||||
|
.card--package,
|
||||||
.card--article-small {
|
.card--article-small {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
.card--package::before,
|
||||||
.card--article-small::before {
|
.card--article-small::before {
|
||||||
content: "";
|
content: "";
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -1429,33 +1459,41 @@ button.sort[data-sort-type=up] .arrow {
|
||||||
top: -1px;
|
top: -1px;
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
|
.card--package:hover,
|
||||||
.card--article-small:hover {
|
.card--article-small:hover {
|
||||||
background-color: var(--grey-950);
|
background-color: var(--grey-950);
|
||||||
border-color: var(--color-txt);
|
border-color: var(--color-txt);
|
||||||
}
|
}
|
||||||
|
.card--package:hover::before,
|
||||||
.card--article-small:hover::before {
|
.card--article-small:hover::before {
|
||||||
border-color: var(--color-txt);
|
border-color: var(--color-txt);
|
||||||
}
|
}
|
||||||
|
.card--package .keywords,
|
||||||
.card--article-small .keywords {
|
.card--article-small .keywords {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 1080px) {
|
@media screen and (max-width: 1080px) {
|
||||||
|
.card--package .title,
|
||||||
.card--article-small .title {
|
.card--article-small .title {
|
||||||
font-size: var(--fs-normal);
|
font-size: var(--fs-normal);
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 560px) {
|
@media screen and (max-width: 560px) {
|
||||||
|
.card--package .content,
|
||||||
.card--article-small .content {
|
.card--article-small .content {
|
||||||
display: contents;
|
display: contents;
|
||||||
}
|
}
|
||||||
|
.card--package .title,
|
||||||
.card--article-small .title {
|
.card--article-small .title {
|
||||||
font-size: var(--fs-small);
|
font-size: var(--fs-small);
|
||||||
padding-top: calc(var(--spacing) * 0.25);
|
padding-top: calc(var(--spacing) * 0.25);
|
||||||
}
|
}
|
||||||
|
.card--package figure,
|
||||||
.card--article-small figure {
|
.card--article-small figure {
|
||||||
grid-row: 1/3;
|
grid-row: 1/3;
|
||||||
}
|
}
|
||||||
|
.card--package .description,
|
||||||
.card--article-small .description {
|
.card--article-small .description {
|
||||||
grid-column: span 2;
|
grid-column: span 2;
|
||||||
}
|
}
|
||||||
|
|
@ -1642,8 +1680,15 @@ button.sort[data-sort-type=up] .arrow {
|
||||||
top: calc(var(--padding-inner) * 1);
|
top: calc(var(--padding-inner) * 1);
|
||||||
bottom: auto;
|
bottom: auto;
|
||||||
}
|
}
|
||||||
.card--impact-small .content {
|
.card--impact-small .title {
|
||||||
grid-column: 2;
|
grid-column: 2;
|
||||||
|
font-size: var(--fs-normal);
|
||||||
|
font-weight: 500;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin-right: 4ch;
|
||||||
|
}
|
||||||
|
.card--impact-small .date {
|
||||||
|
font-size: var(--fs-small);
|
||||||
}
|
}
|
||||||
.card--impact-small .card--open-graph {
|
.card--impact-small .card--open-graph {
|
||||||
grid-column: 2;
|
grid-column: 2;
|
||||||
|
|
@ -1664,7 +1709,7 @@ button.sort[data-sort-type=up] .arrow {
|
||||||
grid-column: span 2;
|
grid-column: span 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.card--impact-small .tag {
|
.card--impact-small .category {
|
||||||
width: auto;
|
width: auto;
|
||||||
justify-self: start;
|
justify-self: start;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
@ -1735,202 +1780,6 @@ button.sort[data-sort-type=up] .arrow {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.card--package {
|
|
||||||
position: relative;
|
|
||||||
max-width: var(--max-w-cards);
|
|
||||||
border: var(--border-light);
|
|
||||||
padding: var(--padding-inner);
|
|
||||||
display: grid;
|
|
||||||
grid-gap: var(--padding-inner);
|
|
||||||
grid-template-columns: 2fr 3fr;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.card--package > picture, .card--package > figure {
|
|
||||||
aspect-ratio: 16/9;
|
|
||||||
display: flex;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.card--package > picture img, .card--package > figure img {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
-o-object-fit: cover;
|
|
||||||
object-fit: cover;
|
|
||||||
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
|
|
||||||
}
|
|
||||||
.card--package {
|
|
||||||
container-type: inline-size;
|
|
||||||
container-name: cardpackage;
|
|
||||||
}
|
|
||||||
.card--package figure {
|
|
||||||
border-radius: var(--radius-small);
|
|
||||||
background-color: var(--color-accent);
|
|
||||||
}
|
|
||||||
.card--package figure img {
|
|
||||||
opacity: 0.8;
|
|
||||||
filter: grayscale(1);
|
|
||||||
}
|
|
||||||
.card--package .content {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
}
|
|
||||||
.card--package .title {
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: var(--fs-normal);
|
|
||||||
line-height: var(--leading-title);
|
|
||||||
margin-bottom: 0.75em;
|
|
||||||
text-wrap: balance;
|
|
||||||
max-width: 42ch;
|
|
||||||
text-transform: uppercase;
|
|
||||||
padding-top: calc(var(--spacing) * 0.25);
|
|
||||||
}
|
|
||||||
.card--package .title a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
@media screen and (max-width: 768px) {
|
|
||||||
.card--package .title {
|
|
||||||
font-size: var(--fs-normal);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.card--package .title .icon {
|
|
||||||
padding-right: 1ch;
|
|
||||||
position: relative;
|
|
||||||
top: 1px;
|
|
||||||
}
|
|
||||||
.card--package .title .icon svg {
|
|
||||||
height: 15px;
|
|
||||||
width: 15px;
|
|
||||||
fill: var(--color-txt);
|
|
||||||
}
|
|
||||||
.card--package .short {
|
|
||||||
display: -webkit-box;
|
|
||||||
-webkit-line-clamp: 3;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
overflow: hidden;
|
|
||||||
flex-grow: 1;
|
|
||||||
padding-right: calc(var(--padding-inner) * 2);
|
|
||||||
}
|
|
||||||
.card--package ul {
|
|
||||||
display: flex;
|
|
||||||
list-style: none;
|
|
||||||
gap: 1ch;
|
|
||||||
color: var(--color-txt-light);
|
|
||||||
padding-top: calc(var(--spacing) * 0.5);
|
|
||||||
}
|
|
||||||
.card--package ul li + li::before {
|
|
||||||
content: "|";
|
|
||||||
padding-right: 1ch;
|
|
||||||
}
|
|
||||||
@media screen and (max-width: 768px) {
|
|
||||||
.card--package ul {
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.card--package .btn--go-to {
|
|
||||||
position: absolute;
|
|
||||||
right: calc(var(--padding-inner) * 1);
|
|
||||||
bottom: var(--padding-inner);
|
|
||||||
}
|
|
||||||
.card--package {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.card--package .btn--go-to {
|
|
||||||
position: absolute;
|
|
||||||
right: var(--padding-inner);
|
|
||||||
bottom: calc(var(--padding-inner) - 3px);
|
|
||||||
}
|
|
||||||
.card--package .btn--go-to svg {
|
|
||||||
width: 15px;
|
|
||||||
height: 15px;
|
|
||||||
fill: var(--color-txt);
|
|
||||||
}
|
|
||||||
@media screen and (max-width: 768px) {
|
|
||||||
.card--package .btn--go-to svg {
|
|
||||||
width: 11px;
|
|
||||||
height: 11px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media screen and (max-width: 560px) {
|
|
||||||
.card--package .btn--go-to {
|
|
||||||
right: calc(var(--padding-inner) * 0.5);
|
|
||||||
bottom: calc(var(--padding-inner) * 0.25);
|
|
||||||
}
|
|
||||||
.card--package .btn--go-to svg {
|
|
||||||
width: 11px;
|
|
||||||
height: 11px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.card--package:hover .btn--go-to {
|
|
||||||
animation: wiggle-left 0.8s ease-in-out;
|
|
||||||
}
|
|
||||||
.card--package:hover {
|
|
||||||
background-color: var(--grey-950);
|
|
||||||
border-color: var(--color-txt);
|
|
||||||
}
|
|
||||||
|
|
||||||
[data-template=investigation] .card--package {
|
|
||||||
border: none;
|
|
||||||
padding-left: 0;
|
|
||||||
padding-right: 0;
|
|
||||||
border-bottom: var(--border-light);
|
|
||||||
}
|
|
||||||
[data-template=investigation] .card--package:first-of-type {
|
|
||||||
border-top: var(--border-light);
|
|
||||||
}
|
|
||||||
[data-template=investigation] .card--package.has-link {
|
|
||||||
border-bottom: var(--border-light);
|
|
||||||
}
|
|
||||||
[data-template=investigation] .card--package.has-link:first-of-type {
|
|
||||||
border-top: var(--border-light);
|
|
||||||
}
|
|
||||||
[data-template=investigation] .card--package.has-link {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
[data-template=investigation] .card--package.has-link::before {
|
|
||||||
content: "";
|
|
||||||
width: 100%;
|
|
||||||
border-top: 1px solid transparent;
|
|
||||||
position: absolute;
|
|
||||||
top: -1px;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
[data-template=investigation] .card--package.has-link:hover {
|
|
||||||
background-color: var(--grey-950);
|
|
||||||
border-color: var(--color-txt);
|
|
||||||
}
|
|
||||||
[data-template=investigation] .card--package.has-link:hover::before {
|
|
||||||
border-color: var(--color-txt);
|
|
||||||
}
|
|
||||||
@media screen and (max-width: 560px) {
|
|
||||||
[data-template=investigation] .card--package figure {
|
|
||||||
margin-left: 0px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
[data-template=investigation] .card--package .title {
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 560px) {
|
|
||||||
.card--package .content {
|
|
||||||
display: contents;
|
|
||||||
}
|
|
||||||
.card--package figure {
|
|
||||||
grid-row: 1/3;
|
|
||||||
}
|
|
||||||
.card--package .title {
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
padding-top: calc(var(--spacing) * 0.25);
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
.card--package .short {
|
|
||||||
grid-column: span 2;
|
|
||||||
}
|
|
||||||
.card--package ul {
|
|
||||||
grid-column: 2;
|
|
||||||
grid-row: 2;
|
|
||||||
padding-top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.card--open-graph {
|
.card--open-graph {
|
||||||
container-type: inline-size;
|
container-type: inline-size;
|
||||||
container-name: opengraph;
|
container-name: opengraph;
|
||||||
|
|
@ -2416,15 +2265,15 @@ body main .page__content {
|
||||||
}
|
}
|
||||||
|
|
||||||
.page__type {
|
.page__type {
|
||||||
height: calc(var(--h-block) * 0.75);
|
height: calc(var(--h-block) * 1);
|
||||||
border-radius: var(--radius-small);
|
border-radius: var(--radius-small);
|
||||||
border: var(--border-medium);
|
border: var(--border-medium);
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 0 1.5ch;
|
padding: 0 1.5ch;
|
||||||
padding-top: 3px;
|
padding-top: 5px;
|
||||||
font-size: var(--fs-xsmall);
|
font-size: var(--fs-small);
|
||||||
background-color: var(--color-bg);
|
background-color: var(--color-bg);
|
||||||
color: var(--color-txt-light);
|
color: var(--color-txt-light);
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
|
@ -2450,12 +2299,12 @@ main .page__header .page__title {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
line-height: var(--leading-title);
|
line-height: var(--leading-title);
|
||||||
margin-top: calc(var(--spacing) * 1);
|
margin-top: calc(var(--spacing) * 1);
|
||||||
margin-bottom: calc(var(--spacing) * 0.5);
|
margin-bottom: calc(var(--spacing) * 1.5);
|
||||||
text-wrap: balance;
|
text-wrap: balance;
|
||||||
}
|
}
|
||||||
main .page__header .description-medium {
|
main .page__header .description {
|
||||||
max-width: 58ch;
|
font-size: var(--fs-text);
|
||||||
line-height: 1.1;
|
margin-bottom: calc(var(--spacing) * 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.container-cards {
|
.container-cards {
|
||||||
|
|
@ -2597,60 +2446,20 @@ main .page__header .description-medium {
|
||||||
margin-inline: auto;
|
margin-inline: auto;
|
||||||
max-width: var(--max-w-content);
|
max-width: var(--max-w-content);
|
||||||
}
|
}
|
||||||
[data-template=investigation] main .panel-left {
|
[data-template=investigation] main .page__content {
|
||||||
width: calc((100vw - var(--max-w-cards) - var(--padding-body) * 4) * 0.5);
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 1340px) {
|
[data-template=investigation] main .investigation__content {
|
||||||
[data-template=investigation] main {
|
font-size: var(--fs-text);
|
||||||
margin-left: auto;
|
|
||||||
margin-right: calc(var(--padding-body) * 3);
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .panel-left {
|
|
||||||
width: calc(100vw - var(--max-w-cards) - var(--padding-body) * 6);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 1220px) {
|
[data-template=investigation] main #investigation__dl {
|
||||||
[data-template=investigation] main {
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: 0px;
|
|
||||||
width: calc(100% - var(--panel-w) * 0.5 - var(--padding-body));
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .panel-left {
|
|
||||||
width: calc(var(--panel-w) * 0.5);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .section__article {
|
|
||||||
margin-top: calc(var(--spacing) * 3);
|
|
||||||
margin-bottom: calc(var(--spacing) * 3);
|
|
||||||
max-width: var(--max-w-content);
|
|
||||||
margin-inline: auto;
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .section__article:target {
|
|
||||||
padding-top: calc(var(--header-h) + var(--spacing) * 1);
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .section__article a:hover {
|
|
||||||
color: var(--grey-200);
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .section__article .section__title {
|
|
||||||
font-weight: 500;
|
|
||||||
text-transform: uppercase;
|
|
||||||
margin-bottom: calc(var(--spacing) * 1);
|
|
||||||
padding-right: 2ch;
|
|
||||||
text-wrap: balance;
|
|
||||||
}
|
|
||||||
[data-template=investigation] main #section__dl,
|
|
||||||
[data-template=investigation] main #section__impacts,
|
|
||||||
[data-template=investigation] main #section__package,
|
|
||||||
[data-template=investigation] main #section__related-articles {
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
}
|
|
||||||
[data-template=investigation] main #section__dl {
|
|
||||||
margin-top: calc(var(--spacing) * 1.5);
|
margin-top: calc(var(--spacing) * 1.5);
|
||||||
border-bottom: var(--border-light);
|
border-bottom: var(--border-light);
|
||||||
max-width: var(--max-w-content);
|
max-width: var(--max-w-content);
|
||||||
margin-inline: auto;
|
margin-inline: auto;
|
||||||
|
font-size: var(--fs-normal);
|
||||||
}
|
}
|
||||||
[data-template=investigation] main #section__dl .dl__group {
|
[data-template=investigation] main #investigation__dl .dl__group {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-gap: var(--padding-inner);
|
grid-gap: var(--padding-inner);
|
||||||
grid-template-columns: 2fr 3fr;
|
grid-template-columns: 2fr 3fr;
|
||||||
|
|
@ -2660,89 +2469,26 @@ main .page__header .description-medium {
|
||||||
border-top: var(--border-light);
|
border-top: var(--border-light);
|
||||||
padding: calc(var(--spacing) * 0.5) 0;
|
padding: calc(var(--spacing) * 0.5) 0;
|
||||||
}
|
}
|
||||||
[data-template=investigation] main #section__dl dt {
|
[data-template=investigation] main #investigation__dl dt {
|
||||||
color: var(--color-txt-light);
|
color: var(--color-txt-light);
|
||||||
padding-right: 1ch;
|
padding-right: 1ch;
|
||||||
}
|
}
|
||||||
[data-template=investigation] main #section__dl ul:not(.keywords) {
|
[data-template=investigation] main #investigation__dl ul:not(.keywords) {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
[data-template=investigation] main #section__dl ul:not(.keywords) li {
|
[data-template=investigation] main #investigation__dl ul:not(.keywords) li {
|
||||||
padding-bottom: 0.2em;
|
padding-bottom: 0.2em;
|
||||||
}
|
}
|
||||||
[data-template=investigation] main #section__synthese {
|
[data-template=investigation] main .investigation__aside {
|
||||||
max-width: var(--max-w-content);
|
max-width: var(--max-w-cards);
|
||||||
margin-inline: auto;
|
margin: calc(var(--spacing) * 4) auto;
|
||||||
}
|
}
|
||||||
[data-template=investigation] main #section__synthese p + p {
|
[data-template=investigation] main .investigation__aside .aside__title {
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
[data-template=investigation] main #section__synthese h4 {
|
|
||||||
margin-top: 2em;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
font-size: var(--fs-normal);
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
-webkit-text-decoration: 1px underline var(--color-txt-light);
|
text-transform: uppercase;
|
||||||
text-decoration: 1px underline var(--color-txt-light);
|
margin-bottom: calc(var(--spacing) * 1);
|
||||||
text-underline-offset: 3px;
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .panel-left {
|
|
||||||
height: calc(100vh - var(--header-h));
|
|
||||||
position: fixed;
|
|
||||||
left: var(--padding-body);
|
|
||||||
padding-bottom: calc(var(--padding-body) * 1);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: flex-end;
|
|
||||||
align-items: center;
|
|
||||||
z-index: calc(var(--z-header) - 1);
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .panel-left #nav--page {
|
|
||||||
padding-bottom: var(--spacing);
|
|
||||||
width: calc(var(--panel-w) * 0.5);
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .panel-left #nav--page ul {
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .panel-left #nav--page ul li {
|
|
||||||
text-align: center;
|
|
||||||
color: var(--color-txt-light);
|
|
||||||
margin-bottom: 4px;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .panel-left #nav--page ul li a {
|
|
||||||
display: block;
|
|
||||||
padding: 5px 1ch;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .panel-left .btn--group {
|
|
||||||
width: calc(var(--panel-w) * 0.5);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: calc(var(--spacing) * 0.25);
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .panel-left .btn--group button,
|
|
||||||
[data-template=investigation] main .panel-left .btn--group .dropdown {
|
|
||||||
flex-grow: 1;
|
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 768px) {
|
|
||||||
[data-template=investigation] main {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
[data-template=investigation] main header {
|
|
||||||
margin-bottom: calc(var(--spacing) * 1);
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .section__article {
|
|
||||||
margin-top: calc(var(--spacing) * 2);
|
|
||||||
margin-bottom: calc(var(--spacing) * 2);
|
|
||||||
}
|
|
||||||
[data-template=investigation] main .panel-left {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.investigation__content {
|
.investigation__content {
|
||||||
margin-top: calc(var(--spacing) * 4);
|
margin-top: calc(var(--spacing) * 4);
|
||||||
}
|
}
|
||||||
|
|
@ -2767,7 +2513,6 @@ main .page__header .description-medium {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
text-wrap: balance;
|
text-wrap: balance;
|
||||||
max-width: var(--max-w-content);
|
max-width: var(--max-w-content);
|
||||||
color: var(--color-accent);
|
|
||||||
}
|
}
|
||||||
.investigation__content .section-txt {
|
.investigation__content .section-txt {
|
||||||
max-width: var(--max-w-content);
|
max-width: var(--max-w-content);
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -26,7 +26,7 @@
|
||||||
@import "components/card-article-small";
|
@import "components/card-article-small";
|
||||||
@import "components/card-impact";
|
@import "components/card-impact";
|
||||||
@import "components/card-impact-small";
|
@import "components/card-impact-small";
|
||||||
@import "components/card-package";
|
// @import "components/card-package";
|
||||||
@import "components/card-open-graph";
|
@import "components/card-open-graph";
|
||||||
@import "components/swiper";
|
@import "components/swiper";
|
||||||
@import "components/slider-before-after";
|
@import "components/slider-before-after";
|
||||||
|
|
|
||||||
|
|
@ -1,67 +1,74 @@
|
||||||
[data-template="investigation"] main {
|
[data-template="investigation"] main {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.page__header {
|
.page__header {
|
||||||
margin-inline: auto;
|
margin-inline: auto;
|
||||||
max-width: var(--max-w-content);
|
max-width: var(--max-w-content);
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-left {
|
.page__content{
|
||||||
width: calc((100vw - var(--max-w-cards) - var(--padding-body) * 4) * 0.5);
|
max-width: 100%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1340px) {
|
.investigation__content{
|
||||||
margin-left: auto;
|
font-size: var(--fs-text);
|
||||||
margin-right: calc(var(--padding-body) * 3);
|
|
||||||
.panel-left {
|
|
||||||
width: calc(100vw - var(--max-w-cards) - var(--padding-body) * 6);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@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 {
|
|
||||||
margin-top: calc(var(--spacing) * 3);
|
|
||||||
margin-bottom: calc(var(--spacing) * 3);
|
|
||||||
max-width: var(--max-w-content);
|
|
||||||
margin-inline: auto;
|
|
||||||
|
|
||||||
&:target {
|
// @media screen and (max-width: 1340px) {
|
||||||
padding-top: calc(var(--header-h) + var(--spacing) * 1);
|
// margin-left: auto;
|
||||||
}
|
// margin-right: calc(var(--padding-body) * 3);
|
||||||
|
// .panel-left {
|
||||||
|
// width: calc(100vw - var(--max-w-cards) - var(--padding-body) * 6);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
a:hover {
|
// @media screen and (max-width: 1220px) {
|
||||||
color: var(--grey-200);
|
// 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__title {
|
// .section__article {
|
||||||
font-weight: 500;
|
// background-color: red;
|
||||||
text-transform: uppercase;
|
// margin-top: calc(var(--spacing) * 3);
|
||||||
margin-bottom: calc(var(--spacing) * 1);
|
// margin-bottom: calc(var(--spacing) * 3);
|
||||||
padding-right: 2ch;
|
// max-width: var(--max-w-content);
|
||||||
text-wrap: balance;
|
// margin-inline: auto;
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#section__dl,
|
// &:target {
|
||||||
#section__impacts,
|
// padding-top: calc(var(--header-h) + var(--spacing) * 1);
|
||||||
#section__package,
|
// }
|
||||||
#section__related-articles {
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
}
|
|
||||||
|
|
||||||
#section__dl {
|
// 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;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#investigation__dl {
|
||||||
margin-top: calc(var(--spacing) * 1.5);
|
margin-top: calc(var(--spacing) * 1.5);
|
||||||
border-bottom: var(--border-light);
|
border-bottom: var(--border-light);
|
||||||
max-width: var(--max-w-content);
|
max-width: var(--max-w-content);
|
||||||
margin-inline: auto;
|
margin-inline: auto;
|
||||||
|
font-size: var(--fs-normal);
|
||||||
|
|
||||||
.dl__group {
|
.dl__group {
|
||||||
@include grid-content();
|
@include grid-content();
|
||||||
|
|
@ -84,92 +91,41 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#section__synthese {
|
|
||||||
max-width: var(--max-w-content);
|
|
||||||
margin-inline: auto;
|
|
||||||
|
|
||||||
p + p {
|
.investigation__aside{
|
||||||
margin-top: 1em;
|
max-width: var(--max-w-cards);
|
||||||
}
|
margin: calc(var(--spacing)*4) auto;
|
||||||
|
|
||||||
h4 {
|
.aside__title{
|
||||||
margin-top: 2em;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
font-size: var(--fs-normal);
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
text-decoration: 1px underline var(--color-txt-light);
|
text-transform: uppercase;
|
||||||
text-underline-offset: 3px;
|
margin-bottom: calc(var(--spacing)*1)
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-left {
|
|
||||||
//background-color: yellow;
|
|
||||||
|
|
||||||
height: calc(100vh - var(--header-h));
|
|
||||||
position: fixed;
|
|
||||||
left: var(--padding-body);
|
|
||||||
padding-bottom: calc(var(--padding-body) * 1);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: flex-end;
|
|
||||||
align-items: center;
|
|
||||||
z-index: calc(var(--z-header) - 1);
|
|
||||||
|
|
||||||
#nav--page {
|
|
||||||
padding-bottom: var(--spacing);
|
|
||||||
width: calc(var(--panel-w) * 0.5);
|
|
||||||
ul {
|
|
||||||
list-style: none;
|
|
||||||
|
|
||||||
li {
|
|
||||||
text-align: center;
|
|
||||||
color: var(--color-txt-light);
|
|
||||||
margin-bottom: 4px;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: var(--fs-small);
|
|
||||||
|
|
||||||
a {
|
|
||||||
display: block;
|
|
||||||
padding: 5px 1ch;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn--group {
|
|
||||||
width: calc(var(--panel-w) * 0.5);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: calc(var(--spacing) * 0.25);
|
|
||||||
|
|
||||||
button,
|
|
||||||
.dropdown {
|
|
||||||
flex-grow: 1;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// SMALL ----------------------------------------------------------
|
// SMALL ----------------------------------------------------------
|
||||||
// ----------------------------------------------------------------
|
// ----------------------------------------------------------------
|
||||||
|
|
||||||
@media #{$small} {
|
// @media #{$small} {
|
||||||
[data-template="investigation"] main {
|
// [data-template="investigation"] main {
|
||||||
width: 100%;
|
// width: 100%;
|
||||||
|
|
||||||
header {
|
// header {
|
||||||
margin-bottom: calc(var(--spacing) * 1);
|
// margin-bottom: calc(var(--spacing) * 1);
|
||||||
}
|
// }
|
||||||
|
|
||||||
.section__article {
|
// .section__article {
|
||||||
margin-top: calc(var(--spacing) * 2);
|
// margin-top: calc(var(--spacing) * 2);
|
||||||
margin-bottom: calc(var(--spacing) * 2);
|
// margin-bottom: calc(var(--spacing) * 2);
|
||||||
}
|
// }
|
||||||
|
|
||||||
|
// .panel-left {
|
||||||
|
// display: none;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
.panel-left {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,6 @@
|
||||||
// text-transform: uppercase;
|
// text-transform: uppercase;
|
||||||
text-wrap: balance;
|
text-wrap: balance;
|
||||||
max-width: var(--max-w-content);
|
max-width: var(--max-w-content);
|
||||||
color: var(--color-accent);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-txt{
|
.section-txt{
|
||||||
|
|
|
||||||
|
|
@ -17,13 +17,13 @@
|
||||||
font-family: "Executive";
|
font-family: "Executive";
|
||||||
src: url("Executive-65Medium.woff") format("woff");
|
src: url("Executive-65Medium.woff") format("woff");
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-style: 500;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Executive";
|
font-family: "Executive";
|
||||||
src: url("Executive-66MediumIt.woff") format("woff");
|
src: url("Executive-66MediumIt.woff") format("woff");
|
||||||
font-weight: normal;
|
font-weight: 500;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -68,11 +68,11 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<dl class="section__article" id="section__dl">
|
<dl id="investigation__dl">
|
||||||
<?php if ($page->incidentDate()->isNotEmpty()): ?>
|
<?php if ($page->incidentDate()->isNotEmpty()): ?>
|
||||||
<div class="dl__group">
|
<div class="dl__group">
|
||||||
<dt>Date de l'incident</dt>
|
<dt>Date de l'incident</dt>
|
||||||
<dd><time datetime="<?= $page->incidentDate()->toDate('yyyy-MM-dd') ?>"><?= $page->incidentDate()->toDate('d MMMM yyyy', 'fr_FR') ?></time></dd>
|
<dd><time class="date" datetime="<?= $page->incidentDate()->toDate('yyyy-MM-dd') ?>"><?= $page->incidentDate()->toDate('d MMMM yyyy', 'fr_FR') ?></time></dd>
|
||||||
</div>
|
</div>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
|
|
@ -162,7 +162,7 @@
|
||||||
<?php if ($page->created()->isNotEmpty()): ?>
|
<?php if ($page->created()->isNotEmpty()): ?>
|
||||||
<div class="dl__group">
|
<div class="dl__group">
|
||||||
<dt>Date de publication</dt>
|
<dt>Date de publication</dt>
|
||||||
<dd><time datetime="<?= $page->created()->toDate('yyyy-MM-dd') ?>"><?= $page->created()->toDate('d MMMM yyyy', 'fr_FR') ?></time></dd>
|
<dd><time class="date" datetime="<?= $page->created()->toDate('yyyy-MM-dd') ?>"><?= $page->created()->toDate('d MMMM yyyy', 'fr_FR') ?></time></dd>
|
||||||
</div>
|
</div>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
@ -279,13 +279,13 @@
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="section__article" id="section__impacts">
|
<div class="investigation__aside" id="aside__impacts">
|
||||||
<h3 class="section__title">Impacts</h3>
|
<h3 class="aside__title">Impacts</h3>
|
||||||
|
|
||||||
<!-- Contenu statique temporaire - sera dynamique quand les pages impacts seront créées -->
|
<!-- Contenu statique temporaire - sera dynamique quand les pages impacts seront créées -->
|
||||||
<div class="card--impact-small" data-impact-type="media">
|
<div class="card--impact-small" data-impact-type="media">
|
||||||
|
|
||||||
<p class="tag">Médiatique</p>
|
<p class="category">Médiatique</p>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<p>12 articles et reprises</p>
|
<p>12 articles et reprises</p>
|
||||||
<p>1.5M de vues cumulées</p>
|
<p>1.5M de vues cumulées</p>
|
||||||
|
|
@ -297,49 +297,30 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card--impact-small has-link" data-impact-type="judiciaire">
|
<div class="card--impact-small has-link" data-impact-type="judiciaire">
|
||||||
<p class="tag">Judiciaire</p>
|
<p class="category">Judiciaire</p>
|
||||||
<p class="date">12 Dec 2025</p>
|
<p class="date">12 Dec 2025</p>
|
||||||
<div class="content">
|
<h4 class="title">Ouverture d’une informatin judiciaire suite à la plainte d’Utopia 56</h4>
|
||||||
<p >La justice israélienne déclare ouvrir une enquête sur "les circonstances de la mort de Nidal et Khaled Amirah".
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<ul class="keywords">
|
|
||||||
<li><a href="#keyword" target="_blank">Occupation</a></li>
|
|
||||||
<li><a href="#keyword" target="_blank">Colonialité</a></li>
|
|
||||||
<li><a href="#keyword" target="_blank">Forces armées</a></li>
|
|
||||||
</ul>
|
|
||||||
<button class="btn--go-to"><a href="#" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
|
<button class="btn--go-to"><a href="#" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
|
||||||
<a class="link-block" href="#" target="_blank"></a>
|
<a class="link-block" href="#" target="_blank"></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card--impact-small has-link" data-impact-type="judiciaire">
|
<div class="card--impact-small has-link" data-impact-type="judiciaire">
|
||||||
<p class="tag">Judiciaire</p>
|
<p class="category">Judiciaire</p>
|
||||||
<p class="date">12 Dec 2025</p>
|
<p class="date">12 Dec 2025</p>
|
||||||
<div class="content">
|
<h4 class="title">Conférence de presse aux archives citoyennes</h4>
|
||||||
<p >La justice israélienne déclare ouvrir une enquête sur "les circonstances de la mort de Nidal et Khaled Amirah"
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<ul class="keywords">
|
|
||||||
<li><a href="#keyword" target="_blank">Occupation</a></li>
|
|
||||||
<li><a href="#keyword" target="_blank">Colonialité</a></li>
|
|
||||||
<li><a href="#keyword" target="_blank">Forces armées</a></li>
|
|
||||||
</ul>
|
|
||||||
<button class="btn--go-to"><a href="#" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
|
<button class="btn--go-to"><a href="#" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
|
||||||
<a class="link-block" href="#" target="_blank"></a>
|
<a class="link-block" href="#" target="_blank"></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card--impact-small" data-impact-type="public">
|
<div class="card--impact-small has-link" data-impact-type="judiciaire">
|
||||||
<p class="tag">Judiciaire</p>
|
<p class="category">Judiciaire</p>
|
||||||
<p class="date">12 Dec 2025</p>
|
<p class="date">12 Dec 2025</p>
|
||||||
<div class="content">
|
<h4 class="title">La justice israélienne déclare ouvrir une enquête sur "les circonstances de la mort de Nidal et Khaled Amirah"</h4>
|
||||||
<p>Index présente une série d'enquêtes récentes au Festival du Réel 2025.</a>
|
<button class="btn--go-to"><a href="#" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
|
||||||
</p>
|
<a class="link-block" href="#" target="_blank"></a>
|
||||||
</div>
|
|
||||||
<ul class="keywords">
|
|
||||||
<li><a href="#keyword" target="_blank">Evènement</a></li>
|
|
||||||
<li><a href="#keyword" target="_blank">Actualité d’Index</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -353,6 +334,34 @@ if ($relatedInvestigations->isEmpty()) {
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<aside class="investigation__aside" id="aside__package">
|
||||||
|
<h3 class="aside__title">Dans le dossier</h3>
|
||||||
|
|
||||||
|
<article class="card--package">
|
||||||
|
<figure>
|
||||||
|
<img src="/media/pages/enquetes/l-homicide-de-nahel-merzouk/fe521629d6-1770640671/nahel-visuel1.png">
|
||||||
|
</figure>
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<p class="type">Dossier</p>
|
||||||
|
<h4 class="title"><a href="http://localhost:8000/enquetes/l-homicide-de-nahel-merzouk">Violences policières en France</a></h4>
|
||||||
|
<ul class="details">
|
||||||
|
<li>5 enquêtes</li>
|
||||||
|
<li>18 impacts</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p class="description">À partir d’images exclusives, l’analyse conjointe de B’Tselem et Index démontre que les deux hommes ont été abattus par des soldats israéliens alors qu’ils ne présentaient aucun danger.</p>
|
||||||
|
</div>
|
||||||
|
<a class="link-block" href="#" target="_blank" aria-hidden="true"></a>
|
||||||
|
<button class="btn--go-to"><a href="#" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
// KIRBY TO DO : récupérer s’il y a un dossier mr
|
// KIRBY TO DO : récupérer s’il y a un dossier mr
|
||||||
?>
|
?>
|
||||||
|
|
@ -367,8 +376,8 @@ if (!empty($packageSlug) && site()->find('dossiers')) {
|
||||||
|
|
||||||
if ($package):
|
if ($package):
|
||||||
?>
|
?>
|
||||||
<aside class="section__article" id="section__package">
|
<aside class="investigation__aside" id="aside__package">
|
||||||
<h3 class="section__title">Dans le dossier</h3>
|
<h3 class="aside__title">Dans le dossier</h3>
|
||||||
|
|
||||||
<article class="card--package">
|
<article class="card--package">
|
||||||
<?php if ($cover = $package->cover()->toFile()): ?>
|
<?php if ($cover = $package->cover()->toFile()): ?>
|
||||||
|
|
@ -377,11 +386,9 @@ if ($package):
|
||||||
</figure>
|
</figure>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
<p class="type">Dossier</p>
|
||||||
<h4 class="title"><a href="<?= $package->url() ?>"><span class="icon"><?= svg('assets/icons/package.svg') ?></span><?= $package->title()->esc() ?></a></h4>
|
<h4 class="title"><a href="<?= $package->url() ?>"><span class="icon"><?= svg('assets/icons/package.svg') ?></span><?= $package->title()->esc() ?></a></h4>
|
||||||
|
|
||||||
<?php if ($package->description()->isNotEmpty()): ?>
|
|
||||||
<p class="short"><?= $package->description()->excerpt(200) ?></p>
|
|
||||||
<?php endif ?>
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
// Compter les enquêtes associées à ce dossier
|
// Compter les enquêtes associées à ce dossier
|
||||||
|
|
@ -390,13 +397,17 @@ if ($package):
|
||||||
})->count();
|
})->count();
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<ul>
|
<ul class="details">
|
||||||
<?php if ($investigationsCount > 0): ?>
|
<?php if ($investigationsCount > 0): ?>
|
||||||
<li><?= $investigationsCount ?> enquête<?= $investigationsCount > 1 ? 's' : '' ?></li>
|
<li><?= $investigationsCount ?> enquête<?= $investigationsCount > 1 ? 's' : '' ?></li>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<li>8 impacts</li>
|
<li>8 impacts</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<?php if ($package->description()->isNotEmpty()): ?>
|
||||||
|
<p class="description"><?= $package->description()->excerpt(200) ?></p>
|
||||||
|
<?php endif ?>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<button class="btn--go-to"><a href="<?= $package->url() ?>" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
|
<button class="btn--go-to"><a href="<?= $package->url() ?>" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
|
||||||
<a class="link-block" href="<?= $package->url() ?>" target="_blank" aria-hidden="true"></a>
|
<a class="link-block" href="<?= $package->url() ?>" target="_blank" aria-hidden="true"></a>
|
||||||
|
|
@ -411,36 +422,28 @@ if ($package):
|
||||||
|
|
||||||
|
|
||||||
<?php if ($relatedInvestigations->isNotEmpty()): ?>
|
<?php if ($relatedInvestigations->isNotEmpty()): ?>
|
||||||
<aside class="section__article" id="section__related-articles">
|
<aside class="investigation__aside" id="aside__related-articles">
|
||||||
<h3 class="section__title">En lien</h3>
|
<h3 class="aside__title">Voir aussi</h3>
|
||||||
|
|
||||||
<?php foreach ($relatedInvestigations as $related): ?>
|
<?php foreach ($relatedInvestigations as $related): ?>
|
||||||
<article class="card--article-small">
|
<article class="card--article-small">
|
||||||
|
|
||||||
<?php if ($cover = $related->cover()->toFile()): ?>
|
<?php if ($cover = $related->cover()->toFile()): ?>
|
||||||
<figure>
|
<figure>
|
||||||
<img src="<?= $cover->url() ?>" alt="<?= $related->title()->esc() ?>">
|
<img src="<?= $cover->url() ?>" alt="<?= $related->title()->esc() ?>">
|
||||||
</figure>
|
</figure>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
<p class="type">Enquête</p>
|
||||||
<h4 class="title"><a href="<?= $related->url() ?>"><?= $related->title()->esc() ?></a></h4>
|
<h4 class="title"><a href="<?= $related->url() ?>"><?= $related->title()->esc() ?></a></h4>
|
||||||
<?php if ($related->incidentDate()->isNotEmpty()): ?>
|
<?php if ($related->incidentDate()->isNotEmpty()): ?>
|
||||||
<time datetime="<?= $related->incidentDate()->toDate('yyyy-MM-dd') ?>"><?= $related->incidentDate()->toDate('d MMMM yyyy', 'fr_FR') ?></time>
|
<time class="date" datetime="<?= $related->incidentDate()->toDate('yyyy-MM-dd') ?>"><?= $related->incidentDate()->toDate('d MMMM yyyy', 'fr_FR') ?></time>
|
||||||
|
|
||||||
<?php if ($related->chapo()->isNotEmpty()): ?>
|
<?php if ($related->chapo()->isNotEmpty()): ?>
|
||||||
<p class="description"><?= $related->chapo()->excerpt(200) ?></p>
|
<p class="description"><?= $related->chapo()->excerpt(200) ?></p>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?php if ($relatedKeywords = $related->keywords()->split()): ?>
|
|
||||||
<?php if (count($relatedKeywords) > 0): ?>
|
|
||||||
<ul class="keywords">
|
|
||||||
<?php foreach ($relatedKeywords as $keyword): ?>
|
|
||||||
<li><a href="#"><?= esc($keyword) ?></a></li>
|
|
||||||
<?php endforeach ?>
|
|
||||||
</ul>
|
|
||||||
<?php endif ?>
|
|
||||||
<?php endif ?>
|
|
||||||
</div>
|
</div>
|
||||||
<button class="btn--go-to"><a href="<?= $related->url() ?>" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
|
<button class="btn--go-to"><a href="<?= $related->url() ?>" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
|
||||||
<a class="link-block" href="<?= $related->url() ?>" target="_blank" aria-hidden="true"></a>
|
<a class="link-block" href="<?= $related->url() ?>" target="_blank" aria-hidden="true"></a>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue