2024-09-03 16:16:06 +02:00
|
|
|
[data-template="sectioned"] section {
|
2024-09-03 16:27:15 +02:00
|
|
|
scroll-margin-top: 6rem;
|
2024-09-04 14:59:09 +02:00
|
|
|
background-color: var(--color);
|
2024-09-03 16:16:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-template="sectioned"] .section__row {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-template="sectioned"] main p:not(:last-child) {
|
2024-09-03 15:46:35 +02:00
|
|
|
font-size: var(--font-size-s);
|
2024-09-03 16:16:06 +02:00
|
|
|
margin-bottom: 1rem;
|
2024-09-03 15:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
2024-09-04 14:25:34 +02:00
|
|
|
[data-template="sectioned"] main p {
|
|
|
|
|
font-size: var(--font-size-s);
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-03 15:46:35 +02:00
|
|
|
[data-template="sectioned"] main .big p {
|
|
|
|
|
font-size: var(--font-size-m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-template="sectioned"] main h2 {
|
|
|
|
|
font-weight: bold;
|
2024-09-03 16:16:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-template="sectioned"] main h2,
|
|
|
|
|
[data-template="sectioned"] main h3 {
|
2024-09-03 15:46:35 +02:00
|
|
|
margin-bottom: calc(var(--padding-vertical) / 1.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-template="sectioned"] .blocks > *:not(:last-child) {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-04 14:48:50 +02:00
|
|
|
/* Links list */
|
|
|
|
|
[data-template="sectioned"] .links-list li {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 3fr 3fr 0.5fr;
|
|
|
|
|
border-bottom: 1px solid #000;
|
|
|
|
|
margin-bottom: 0.6rem;
|
|
|
|
|
padding-bottom: 0.6rem;
|
|
|
|
|
font-size: var(--font-size-s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-template="sectioned"] .links-list li p {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-template="sectioned"] .links-list li a {
|
|
|
|
|
justify-self: end;
|
|
|
|
|
}
|
|
|
|
|
[data-template="sectioned"] .links-list li a::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
}
|
|
|
|
|
[data-template="sectioned"] .links-list li a::before {
|
|
|
|
|
content: "→";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
transform: rotate(-45deg);
|
2024-09-03 15:46:35 +02:00
|
|
|
}
|