49 lines
581 B
CSS
49 lines
581 B
CSS
.chapter p{
|
|
text-align: justify;
|
|
hyphens: auto;
|
|
hyphenate-limit-chars: 8 3;
|
|
position: relative;
|
|
orphans: 2;
|
|
hyphens: 2;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
p::before{
|
|
content: "...........";
|
|
font-size: var(--sign-size);
|
|
color: var(--sign-color);
|
|
letter-spacing: var(--sign-spacing);
|
|
line-height: var(--sign-baseline);
|
|
position: relative;
|
|
top: -3px;
|
|
padding-right: 8px;
|
|
/* position: absolute;
|
|
left: 0; */
|
|
}
|
|
|
|
.following-h3::before{
|
|
display: none!important;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* .chapter > :first-child{
|
|
margin-top: 0px;
|
|
}
|
|
|
|
|
|
|
|
|
|
*/
|