« MediaWiki:Citizen.css » : différence entre les versions
Page de l’interface de MediaWiki
Autres actions
Page créée avec « →La totalité du CSS placé ici s’appliquera aux utilisateurs de l’habillage Citizen. : →Change la couleur principale du menu et des titres : :root { --citizen-primary-color: #00d4ff; --citizen-secondary-color: #1f2631; --citizen-accent-color: #ffd700; } →Personnalisation de l’arrière-plan : body { background: #121824; } » |
Aucun résumé des modifications |
||
| Ligne 1 : | Ligne 1 : | ||
/* La totalité du CSS placé ici s’appliquera aux utilisateurs de l’habillage Citizen. */ | /* La totalité du CSS placé ici s’appliquera aux utilisateurs de l’habillage Citizen. */ | ||
:root { | :root { | ||
--citizen-primary-color: #98ce6f; /* vert prairie */ | |||
--citizen-secondary-color: #ffd7ef; /* rose doux */ | |||
--citizen-accent-color: #91d3f9; /* bleu ciel */ | |||
--citizen-background-color: #f4f4f4; /* gris clair */ | |||
--citizen-header-color: #ffe684; /* jaune soleil */ | |||
} | } | ||
/* | /* Fond de page */ | ||
body { | body { | ||
background: #f4f4f4; | |||
} | |||
/* En-tête, barres et boutons principaux */ | |||
.citizen-header, .citizen-navbar, .citizen-footer { | |||
background: #98ce6f !important; | |||
color: #222 !important; | |||
} | |||
.citizen-navbar a, .citizen-navbar a:visited { | |||
color: #222 !important; | |||
} | |||
/* Encadrés d’accueil façon Fandom */ | |||
.mainpage-box, .fandombox { | |||
border: 2px solid #98ce6f; | |||
background: #ffd7ef; | |||
border-radius: 10px; | |||
padding: 16px; | |||
margin-bottom: 1em; | |||
} | |||
/* Titres de section */ | |||
h2, h3 { | |||
color: #91d3f9; | |||
} | } | ||
Version du 7 juillet 2025 à 20:53
/* La totalité du CSS placé ici s’appliquera aux utilisateurs de l’habillage Citizen. */
:root {
--citizen-primary-color: #98ce6f; /* vert prairie */
--citizen-secondary-color: #ffd7ef; /* rose doux */
--citizen-accent-color: #91d3f9; /* bleu ciel */
--citizen-background-color: #f4f4f4; /* gris clair */
--citizen-header-color: #ffe684; /* jaune soleil */
}
/* Fond de page */
body {
background: #f4f4f4;
}
/* En-tête, barres et boutons principaux */
.citizen-header, .citizen-navbar, .citizen-footer {
background: #98ce6f !important;
color: #222 !important;
}
.citizen-navbar a, .citizen-navbar a:visited {
color: #222 !important;
}
/* Encadrés d’accueil façon Fandom */
.mainpage-box, .fandombox {
border: 2px solid #98ce6f;
background: #ffd7ef;
border-radius: 10px;
padding: 16px;
margin-bottom: 1em;
}
/* Titres de section */
h2, h3 {
color: #91d3f9;
}