Modèle:Citation/styles.css
De Nefald
Autres actions
/* Modèle:Citation - Guillemets stylisés */
.citation-wrapper {
display: inline-block;
font-style: italic;
position: relative;
}
.citation-texte {
display: inline;
}
.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;
}