latex-css/lang/es.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
478 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(es) .theorem::before { content: 'Teorema ' counter(theorem) '. ' !important; }
:lang(es) .lemma::before { content: 'Lema ' counter(theorem) '. ' !important; }
:lang(es) .proof::before { content: 'Demostración.' attr(title) !important; }
:lang(es) .definition::before { content: 'Definición ' counter(definition) '. ' !important; }
:lang(es) .indent-pars h2 + p,
:lang(es) .indent-pars h3 + p,
:lang(es) .indent-pars h4 + p {
text-indent: var(--text-indent-size);
}