decor-6-site/assets/css/text.css

73 lines
1.4 KiB
CSS
Raw Normal View History

.chapter p {
text-align: justify;
hyphens: auto;
hyphenate-limit-chars: 7 3 2;
/* position: relative; */
orphans: 2;
hyphens: 2;
}
2026-04-01 15:22:18 +02:00
.chapter h2,
.chapter h3{
text-transform: uppercase;
}
p::before {
2026-04-01 15:22:18 +02:00
content: ".........";
font-size: var(--sign-size);
color: var(--sign-color);
letter-spacing: var(--sign-spacing);
font-family: var(--sign-family);
line-height: 0px;
position: relative;
top: -3px;
padding-left: 0px;
padding-right: 0px;
margin-right: -4px;
}
.following-title::before,
.following-h3::before {
2026-03-24 02:34:20 +01:00
content: none;
}
2026-04-01 15:22:18 +02:00
/* ------ BILBIOGRAPHIE ------ */
2026-04-01 15:22:18 +02:00
.block-type-bibliographie p {
font-size: var(--fs-notes);
line-height: 14px;
font-weight: 500;
text-align: left;
padding-left: calc(var(--unit)*2);
text-indent: calc(var(--unit)*-0.75);
break-inside: avoid;
position: relative;
}
2026-04-01 15:22:18 +02:00
.block-type-bibliographie p::before {
content: ".....";
position: absolute;
left: calc(var(--unit)*0.75 + 16px);
top: 3px;
display: none !important;
}
2026-04-01 15:22:18 +02:00
.block-type-bibliographie p::after {
content: "+";
position: absolute;
left: calc(var(--unit)*0.75);
top: 0px;
font-size: var(--sign-size);
color: var(--sign-color);
letter-spacing: var(--sign-spacing);
font-family: var(--sign-family);
line-height: var(--sign-baseline);
}