« Modèle:Citation/styles.css » : différence entre les versions
De Nefald
Autres actions
Création |
Aucun résumé des modifications |
||
| Ligne 1 : | Ligne 1 : | ||
.citation { | /* Modèle:Citation - Guillemets stylisés */ | ||
font- | .citation-wrapper { | ||
display: inline-block; | |||
font-style: italic; | |||
position: relative; | |||
} | } | ||
.citation | .citation-texte { | ||
display: inline; | |||
} | } | ||
.citation | .citation-texte::before { | ||
content: "« "; | |||
font-style: normal; | |||
color: #666; | |||
font-weight: bold; | |||
} | |||
.citation-texte::after { | |||
content: " »"; | |||
font-style: normal; | |||
color: #666; | |||
font-weight: bold; | |||
} | |||
.citation-auteur { | |||
display: inline; | |||
font-style: normal; | |||
font-weight: 600; | |||
color: #333; | |||
} | |||
.citation-auteur::before { | |||
content: " — "; | |||
color: #999; | |||
} | |||
.citation-source { | |||
display: inline; | |||
font-style: normal; | |||
font-size: 0.9em; | |||
color: #666; | |||
} | |||
/* Style bloc pour citations longues */ | |||
.citation-bloc { | |||
display: block; | |||
margin: 1em 2em; | |||
padding: 0.5em 1em; | |||
border-left: 3px solid #ddd; | |||
background-color: #f9f9f9; | |||
} | } | ||