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

69 lines
1.3 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;
2026-03-16 23:29:25 +01:00
hyphenate-limit-chars: 7 3 2;
/* position: relative; */
2026-03-04 10:52:07 +01:00
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-16 21:28:54 +01:00
p::before {
2026-03-16 23:54:56 +01:00
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 23:29:25 +01:00
line-height: 0px;
2026-03-16 21:28:54 +01:00
position: relative;
top: -3px;
2026-03-16 23:54:56 +01:00
padding-left: 0px;
2026-03-16 23:29:25 +01:00
padding-right: 0px;
2026-03-16 23:54:56 +01:00
margin-right: -4px;
2026-03-15 11:30:36 +01:00
}
2026-03-16 23:29:25 +01:00
.following-title::before,
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-17 00:10:52 +01:00
position: relative;
2026-03-16 15:11:43 +01:00
}
2026-03-16 21:28:54 +01:00
.bibliographie p::before {
2026-03-17 00:10:52 +01:00
content: ".....";
2026-03-16 15:11:43 +01:00
position: absolute;
2026-03-16 23:29:25 +01:00
/* left: calc(var(--unit)*0.75); */
2026-03-16 21:28:54 +01:00
left: calc(var(--unit)*0.75 + 16px);
2026-03-17 00:10:52 +01:00
top: 3px;
display: none !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);
2026-03-17 00:10:52 +01:00
top: 0px;
2026-03-16 21:28:54 +01:00
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);
}