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

134 lines
1.6 KiB
SCSS
Raw Normal View History

2026-04-09 19:37:52 +02:00
2026-01-19 22:14:03 +01:00
sup{
line-height: 0;
}
2026-03-09 23:11:46 +01:00
.smallcaps{
font-variant: small-caps;
}
2026-01-19 22:14:03 +01:00
hr{
border: none;
height: var(--baseline);
}
a{
color: currentColor;
text-decoration: none;
}
p{
text-align: justify;
orphans: 2;
widows: 2;
2026-04-16 09:42:55 +02:00
position: relative;
top: -2px;
2026-04-16 10:35:30 +02:00
2026-04-16 09:42:55 +02:00
2026-04-17 18:06:54 +02:00
padding-left: calc(var(--unit)*2);
2026-01-19 22:14:03 +01:00
}
p, li{
hyphens: auto;
hyphenate-limit-chars: 7 3 4;
hyphenate-limit-lines: 2;
hyphenate-limit-zone: 8%;
word-spacing: -0.004em;
2026-04-14 18:18:10 +02:00
widows: 2;
orphans: 2;
2026-01-19 22:14:03 +01:00
}
2026-01-19 23:37:32 +01:00
2026-01-19 22:14:03 +01:00
2026-04-10 11:46:11 +02:00
.wrapper-indent > p:first-of-type {
text-indent: $indent*0.5;
}
2026-01-19 22:14:03 +01:00
blockquote{
2026-04-17 18:06:54 +02:00
// font-family: var(--font-quote);
border-left: 0.5px solid black;
margin-left: calc(var(--unit)*1.5);
}
blockquote p{
padding-left: 2mm;
2026-01-19 22:14:03 +01:00
}
2026-04-09 22:10:24 +02:00
ul{
color: red;
}
2026-04-09 21:52:21 +02:00
2026-01-19 22:14:03 +01:00
2026-04-21 15:40:30 +02:00
2026-04-21 16:37:59 +02:00
// ol, p, h4, h5, h6{
// display: none;
// }
2026-04-21 15:40:30 +02:00
// THESE --------------------------------------------------
2026-04-09 22:03:28 +02:00
2026-04-21 23:28:03 +02:00
.thesis{
break-inside: avoid;
}
2026-04-21 23:05:59 +02:00
.thesis-title{
width: 100%;
display: flex;
2026-04-21 23:28:03 +02:00
gap: 1ch;
2026-04-21 23:05:59 +02:00
}
2026-04-21 23:28:03 +02:00
.thesis-line{
2026-04-21 23:05:59 +02:00
width: 100%;
2026-04-21 23:28:03 +02:00
height: 8px;
2026-04-21 23:05:59 +02:00
background-color: black;
2026-04-21 23:28:03 +02:00
position: relative;
top: 3px;
}
.thesis-title p{
flex-shrink: 0;
text-transform: uppercase;
font-weight: 500;
font-size: 0.9em;
letter-spacing: 0.01rem;
2026-04-21 23:05:59 +02:00
}
2026-04-21 16:37:59 +02:00
.thesis p{
display: block;
2026-04-09 22:03:28 +02:00
}
2026-04-21 15:40:30 +02:00
2026-04-21 23:28:03 +02:00
.thesis + .thesis{
margin-top: calc(var(--baseline)*1);
}
2026-04-21 15:40:30 +02:00
2026-04-21 16:37:59 +02:00
// INTRO --------------------------------------------------
2026-04-21 15:40:30 +02:00
.has-intro-1-paragraph .intro,
.has-intro .intro{
break-after: right;
}
.intro{
2026-04-21 23:05:59 +02:00
2026-04-21 15:40:30 +02:00
p{
font-size: var(--fs-intro);
padding-left: calc(var(--unit)*1);
2026-04-21 23:05:59 +02:00
line-height: 23px;
2026-04-21 16:37:59 +02:00
display: block;
2026-04-21 15:40:30 +02:00
}
}