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:38:53 +01:00
|
|
|
margin-top: -25svh;
|
2024-03-12 17:12:03 +01:00
|
|
|
margin-bottom: 30svh;
|
2024-03-12 17:38:53 +01:00
|
|
|
transition: margin-top 0.5s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#tabs.open {
|
|
|
|
|
margin-bottom: calc(3 * var(--unit--vertical));
|
2024-03-10 12:03:31 +01:00
|
|
|
}
|
|
|
|
|
|
2024-03-09 11:27:10 +01:00
|
|
|
.active-tab {
|
2024-03-12 17:41:59 +01:00
|
|
|
max-height: 65svh;
|
2024-03-09 11:27:10 +01:00
|
|
|
overflow: auto;
|
2024-03-12 17:38:53 +01:00
|
|
|
margin-top: var(--unit--vertical);
|
|
|
|
|
transition: max-height 0.5s ease-in-out;
|
2024-03-10 12:03:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
2024-03-12 17:41:59 +01:00
|
|
|
-webkit-line-clamp: 5;
|
2024-03-10 19:24:24 +01:00
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|