latex-css/lang/fr.css
vihuna dec3909be1
feat: adds paragraph first line indentation (#50)
Co-authored-by: Vincent Dörig <dvincdt@gmail.com>
2023-03-05 21:46:32 +01:00

10 lines
483 B
CSS
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

:lang(fr) .theorem::before { content: 'Théorème ' counter(theorem) '. ' !important; }
:lang(fr) .lemma::before { content: 'Lemme ' counter(theorem) '. ' !important; }
:lang(fr) .proof::before { content: 'Démonstration.' attr(title) !important; }
:lang(fr) .definition::before { content: 'Définition ' counter(definition) '. ' !important; }
:lang(fr) .indent-pars h2 + p,
:lang(fr) .indent-pars h3 + p,
:lang(fr) .indent-pars h4 + p {
text-indent: var(--text-indent-size);
}