This commit is contained in:
Julie Blanc 2026-04-17 18:06:54 +02:00
parent 5b1113c988
commit 92b92a1146
8 changed files with 101 additions and 49 deletions

View file

@ -5,6 +5,7 @@
--font-quote: 'Louize', sans-serif;
--font-sans: 'Basis Grotesque Pro', sans-serif;
--font-size: 12px;
--fs-medium: 15px;
--fs-small: 9.8px;
--baseline: 18px;
--indent: 26px;
@ -286,7 +287,7 @@ p {
widows: 2;
position: relative;
top: -2px;
padding-left: calc(var(--unit) * 3);
padding-left: calc(var(--unit) * 2);
}
p, li {
@ -304,7 +305,12 @@ p, li {
}
blockquote {
font-family: var(--font-quote);
border-left: 0.5px solid black;
margin-left: calc(var(--unit) * 1.5);
}
blockquote p {
padding-left: 2mm;
}
ul {
@ -337,10 +343,10 @@ ol[type="1"] {
-moz-column-break-after: avoid;
break-after: avoid;
position: absolute;
left: calc(var(--unit) * 2);
left: calc(var(--unit) * 1);
}
ol[type="1"]::after {
content: attr(start);
content: attr(start) !important;
display: block;
font-size: var(--fs-small);
opacity: 0.5;
@ -421,41 +427,54 @@ ol[type="1"].ol-clone {
font-size: 22px;
font-weight: 200;
text-transform: uppercase;
text-align: center;
text-align: left;
line-height: calc(var(--baseline) * 1.4);
margin-top: 4mm;
padding-bottom: 4mm;
margin-top: 6mm;
padding-bottom: 6mm;
hyphens: auto;
padding-left: calc(var(--unit) * 1);
position: relative;
max-width: calc(var(--unit) * 5);
text-wrap: balance;
}
#section__content h2::before {
display: block;
position: absolute;
left: 0;
}
#section__content h3 {
font-weight: 500;
font-size: 1em;
line-height: calc(var(--baseline) * 0.75);
font-size: var(--fs-medium);
line-height: 1.1;
padding-left: calc(var(--unit) * 1);
position: relative;
margin-top: 4mm;
padding-bottom: 4mm;
padding-left: 10mm;
text-align: center;
margin-top: 6mm;
padding-bottom: 6mm;
margin-right: 8mm;
}
#section__content h3::before {
display: block;
position: absolute;
left: 0;
}
#section__content h4 {
font-weight: 500;
font-weight: normal;
font-size: 1em;
line-height: calc(var(--baseline) * 0.75);
line-height: var(--baseline);
position: relative;
margin-top: calc(var(--baseline) * 1);
padding-bottom: calc(var(--baseline) * 0.5);
padding-left: 20mm;
margin-top: 6mm;
padding-bottom: 6mm;
margin-right: 20mm;
padding-left: calc(var(--unit) * 2);
-webkit-text-decoration: 0.5px underline;
text-decoration: 0.5px underline;
text-underline-offset: 3px;
}
#section__content h4::before {
display: block;
position: absolute;
left: 10mm;
left: calc(var(--unit) * 1);
text-decoration: none;
}
#section__content h5 {
font-weight: normal;
@ -528,6 +547,15 @@ ol[type="1"].ol-clone {
font-weight: bold;
}
.note_call {
font-family: var(--font-sans);
font-size: var(--fs-small);
font-weight: bold;
line-height: 1;
position: relative;
top: -4px;
}
#toc_container {
-moz-column-break-before: page;
break-before: page;