decor-6-expe/maquette-tests/assets/css/text.css

68 lines
1.2 KiB
CSS
Raw Normal View History

2026-03-16 21:28:54 +01:00
.chapter p {
2026-03-04 10:52:07 +01:00
text-align: justify;
hyphens: auto;
hyphenate-limit-chars: 8 3;
position: relative;
orphans: 2;
hyphens: 2;
2026-03-16 21:28:54 +01:00
2026-03-04 10:52:07 +01:00
}
2026-03-15 11:30:36 +01:00
2026-03-04 10:52:07 +01:00
2026-03-16 21:28:54 +01:00
p::before {
content: "...........";
2026-03-15 11:30:36 +01:00
font-size: var(--sign-size);
2026-03-16 21:28:54 +01:00
color: var(--sign-color);
letter-spacing: var(--sign-spacing);
font-family: var(--sign-family);
2026-03-16 21:28:54 +01:00
line-height: var(--sign-baseline);
position: relative;
top: -3px;
padding-right: 8px;
2026-03-15 11:30:36 +01:00
}
2026-03-16 21:28:54 +01:00
.following-h3::before {
display: none !important;
2026-03-16 09:48:16 +01:00
}
2026-03-04 13:53:24 +01:00
2026-03-16 21:28:54 +01:00
/*BILBIOGRAPHIE*/
.bibliographie p {
font-size: var(--fs-notes);
2026-03-16 15:11:43 +01:00
line-height: 14px;
font-weight: 500;
text-align: left;
padding-left: calc(var(--unit)*2);
text-indent: calc(var(--unit)*-0.75);
2026-03-16 21:28:54 +01:00
break-inside: avoid;
2026-03-16 15:11:43 +01:00
}
2026-03-16 21:28:54 +01:00
.bibliographie p::before {
content: "......";
2026-03-16 15:11:43 +01:00
position: absolute;
left: calc(var(--unit)*0.75);
2026-03-16 21:28:54 +01:00
left: calc(var(--unit)*0.75 + 16px);
2026-03-16 15:11:43 +01:00
top: -6px;
2026-03-16 21:28:54 +01:00
display: block !important;
2026-03-04 10:52:07 +01:00
}
2026-03-16 21:28:54 +01:00
.bibliographie p::after {
content: "+";
position: absolute;
left: calc(var(--unit)*0.75);
top: -2px;
font-size: var(--sign-size);
color: var(--sign-color);
letter-spacing: var(--sign-spacing);
font-family: var(--sign-family);
2026-03-16 21:28:54 +01:00
line-height: var(--sign-baseline);
}