walter-boente_book-collection/css/modules/_titles.scss

211 lines
3.9 KiB
SCSS
Raw Normal View History

2026-01-19 22:14:03 +01:00
#section__content{
2026-04-16 16:00:53 +02:00
2026-04-21 13:52:57 +02:00
2026-04-09 19:37:52 +02:00
2026-04-16 16:00:53 +02:00
h1:first-of-type{
// column-span: all;
// height: $content-h;
2026-04-09 19:37:52 +02:00
}
2026-04-16 18:15:07 +02:00
// .before-h1{
// break-after: page;
// }
2026-04-16 17:42:46 +02:00
h1{
2026-04-21 15:40:30 +02:00
2026-04-21 13:52:57 +02:00
// break-before: page;
2026-04-21 15:40:30 +02:00
// break-after: page;
2026-04-16 18:15:07 +02:00
2026-04-21 15:40:30 +02:00
// position: absolute;
// left: 0;
// top: 0;
2026-04-16 18:15:07 +02:00
height: $content-h;
// background-color: red;
display: flex;
flex-direction: column;
justify-content: space-between;
2026-04-21 15:40:30 +02:00
// display: none;
2026-04-16 17:42:46 +02:00
}
2026-04-09 19:37:52 +02:00
2026-01-20 21:31:42 +01:00
2026-04-09 21:52:21 +02:00
h2, h3, h4, h5, h6 {
2026-01-20 21:31:42 +01:00
&::before{
2026-04-09 21:52:21 +02:00
content: attr(data-counter);
2026-01-20 21:31:42 +01:00
}
}
2026-01-19 22:14:03 +01:00
2026-04-09 19:37:52 +02:00
h2, h3 , h4{
2026-01-19 22:14:03 +01:00
break-inside: avoid;
break-after: avoid;
2026-01-20 21:12:05 +01:00
text-wrap: balance;
2026-01-19 22:14:03 +01:00
/* hack for avoiding break-after */
margin-bottom: calc(var(--baseline)*-3);
&::after{
content: '';
display: block;
height: calc(var(--baseline)*3);
2026-01-20 19:05:58 +01:00
}
}
h5, h6 {
break-inside: avoid;
break-after: avoid;
2026-01-20 21:12:05 +01:00
text-wrap: balance;
2026-01-20 19:05:58 +01:00
/* hack for avoiding break-after */
margin-bottom: calc(var(--baseline)*-2);
&::after{
content: '';
display: block;
height: calc(var(--baseline)*2);
2026-01-19 22:14:03 +01:00
// background-color: rgba(255, 255, 0, 0.595);
}
}
h1 + ol + p,
h2 + ol + p,
h3 + ol + p,
h4 + ol + p,
h5 + ol + p,
h6 + ol + p{
text-indent: 0;
}
2026-01-20 21:14:47 +01:00
2026-01-19 22:14:03 +01:00
2026-04-09 19:37:52 +02:00
h1{
font-weight: 200;
2026-04-16 17:44:10 +02:00
font-size: 105px;
2026-04-09 21:52:21 +02:00
line-height: 0.9;
2026-04-09 19:37:52 +02:00
hyphens: auto;
2026-04-16 17:44:10 +02:00
hyphenate-limit-chars: 8 4 3;
2026-04-09 19:37:52 +02:00
span{
display: block;
}
}
2026-01-19 22:14:03 +01:00
h2{
2026-04-09 21:52:21 +02:00
font-size: 22px;
font-weight: 200;
2026-01-19 23:14:58 +01:00
text-transform: uppercase;
2026-04-17 18:06:54 +02:00
text-align: left;
2026-04-09 21:52:21 +02:00
line-height: calc(var(--baseline)*1.4);
2026-04-17 18:06:54 +02:00
margin-top: 6mm;
padding-bottom: 6mm;
2026-04-09 22:03:28 +02:00
hyphens: auto;
2026-04-17 18:06:54 +02:00
padding-left: calc(var(--unit)*1);
position: relative;
max-width: calc(var(--unit)*5);
text-wrap: balance;
2026-04-09 21:52:21 +02:00
2026-01-19 22:14:03 +01:00
&::before{
2026-04-09 21:52:21 +02:00
display: block;
2026-04-17 18:06:54 +02:00
position: absolute;
left: 0;
2026-04-09 21:52:21 +02:00
2026-01-19 22:14:03 +01:00
}
2026-04-09 21:52:21 +02:00
2026-01-19 22:14:03 +01:00
}
2026-01-19 23:14:58 +01:00
2026-01-19 22:14:03 +01:00
h3{
2026-01-19 23:14:58 +01:00
font-weight: 500;
2026-04-17 18:06:54 +02:00
font-size: var(--fs-medium);
line-height: 1.1;
padding-left: calc(var(--unit)*1);
2026-01-19 22:14:03 +01:00
position: relative;
2026-04-17 18:06:54 +02:00
margin-top: 6mm;
padding-bottom: 6mm;
margin-right: 8mm;
2026-01-19 22:14:03 +01:00
&::before{
2026-04-09 21:52:21 +02:00
display: block;
2026-04-17 18:06:54 +02:00
position: absolute;
left: 0;
2026-01-19 22:14:03 +01:00
}
}
h4{
2026-04-17 18:06:54 +02:00
font-weight: normal;
2026-04-09 21:52:21 +02:00
font-size: 1em;
2026-04-17 18:06:54 +02:00
line-height: var(--baseline);
2026-01-19 22:14:03 +01:00
position: relative;
2026-04-17 18:06:54 +02:00
margin-top: 6mm;
padding-bottom: 6mm;
margin-right: 20mm;
padding-left: calc(var(--unit)*2);
text-decoration: 0.5px underline;
text-underline-offset: 3px;
2026-01-20 22:37:15 +01:00
&::before{
2026-04-09 21:52:21 +02:00
display: block;
position: absolute;
2026-04-17 18:06:54 +02:00
left: calc(var(--unit)*1);
text-decoration: none;
2026-01-20 22:37:15 +01:00
}
2026-01-19 22:14:03 +01:00
}
2026-01-19 23:14:58 +01:00
h5{
2026-04-09 21:52:21 +02:00
font-weight: normal;
font-size: 1em;
2026-04-09 22:03:28 +02:00
line-height: calc(var(--baseline)*0.75);
2026-01-19 22:14:03 +01:00
position: relative;
2026-04-09 21:52:21 +02:00
margin-top: calc(var(--baseline)*1);
2026-01-19 23:14:58 +01:00
padding-bottom: calc(var(--baseline)*0.25);
2026-04-09 21:52:21 +02:00
padding-left: $indent;
text-indent: $indent;
&::before{
display: block;
position: absolute;
left: 0;
}
2026-01-19 22:14:03 +01:00
}
2026-01-20 19:05:58 +01:00
h6{
2026-04-09 21:52:21 +02:00
font-weight: normal;
font-size: 1em;
2026-04-09 22:03:28 +02:00
line-height: calc(var(--baseline)*0.75);
2026-04-09 21:52:21 +02:00
position: relative;
margin-top: calc(var(--baseline)*1);
padding-left: $indent;
text-indent: $indent;
&::before{
display: block;
position: absolute;
left: 0;
}
2026-01-20 19:05:58 +01:00
}
2026-01-19 23:14:58 +01:00
2026-01-19 22:14:03 +01:00
}
[data-id="section__content"][data-split-from] > :first-child {
margin-top: 0;
2026-01-20 21:14:47 +01:00
}