2024-03-09 11:27:10 +01:00
|
|
|
.toggle-btns {
|
|
|
|
|
position: sticky;
|
|
|
|
|
}
|
2024-03-10 19:24:24 +01:00
|
|
|
button.toggle.open:not(.see-more) {
|
2024-01-26 11:03:42 +01:00
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.toggle.left::after {
|
|
|
|
|
margin-left: var(--unit--horizontal);
|
|
|
|
|
}
|
|
|
|
|
button.toggle.left.close::after {
|
|
|
|
|
content: "+";
|
|
|
|
|
}
|
|
|
|
|
button.toggle.left.open::after {
|
|
|
|
|
content: "-";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.toggle.right::before {
|
|
|
|
|
margin-right: var(--unit--horizontal);
|
|
|
|
|
}
|
|
|
|
|
button.toggle.right.close::before {
|
|
|
|
|
content: "+";
|
|
|
|
|
}
|
|
|
|
|
button.toggle.right.open::before {
|
|
|
|
|
content: "-";
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-10 12:03:31 +01:00
|
|
|
#tabs {
|
|
|
|
|
position: relative;
|
2024-03-12 17:12:03 +01:00
|
|
|
margin-top: -30svh;
|
|
|
|
|
margin-bottom: 30svh;
|
2024-03-10 12:03:31 +01:00
|
|
|
}
|
|
|
|
|
|
2024-03-09 11:27:10 +01:00
|
|
|
.active-tab {
|
2024-03-10 19:24:24 +01:00
|
|
|
max-height: 70vh;
|
2024-03-09 11:27:10 +01:00
|
|
|
overflow: auto;
|
2024-03-10 19:24:24 +01:00
|
|
|
margin-top: calc((var(--unit--vertical) * 0.5));
|
2024-03-10 12:03:31 +01:00
|
|
|
transition: height 0.5s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-cover.open .active-tab {
|
2024-03-12 17:12:03 +01:00
|
|
|
height: calc(100svh - 7.5 * var(--unit--vertical));
|
2024-01-26 11:03:42 +01:00
|
|
|
}
|
2024-03-10 19:24:24 +01:00
|
|
|
|
|
|
|
|
.texts__year.short .year__edito {
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.texts__year .see-more {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-top: calc(var(--unit--vertical) / 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media screen and (min-width: 640px) {
|
|
|
|
|
#home #tabs {
|
|
|
|
|
margin-top: calc(0px - (10 * var(--unit--vertical)));
|
|
|
|
|
}
|
|
|
|
|
button.toggle.left::after {
|
|
|
|
|
margin-left: calc(var(--unit--horizontal) / 2);
|
|
|
|
|
}
|
|
|
|
|
button.toggle.right::before {
|
|
|
|
|
margin-right: calc(var(--unit--horizontal) / 2);
|
|
|
|
|
}
|
|
|
|
|
}
|