« MediaWiki:Citizen.css » : différence entre les versions
Page de l’interface de MediaWiki
Autres actions
Page blanchie Balise : Blanchiment |
Aucun résumé des modifications |
||
| Ligne 1 : | Ligne 1 : | ||
/* 🌙 Fond sombre et texte clair */ | |||
body { | |||
background-color: #1e1e1e; | |||
color: #e0e0e0; | |||
font-family: "Segoe UI", "Helvetica Neue", sans-serif; | |||
} | |||
/* 📦 Centrage du contenu */ | |||
.citizen-content { | |||
max-width: 1000px; | |||
margin: auto; | |||
padding: 20px; | |||
} | |||
/* 🧭 Titre principal stylisé */ | |||
.firstHeading { | |||
font-size: 2em; | |||
font-weight: bold; | |||
color: #ffffff; | |||
text-align: center; | |||
margin-bottom: 20px; | |||
} | |||
/* 🖼️ Bannière personnalisée */ | |||
.citizen-header::before { | |||
content: "📚 Wiki d’Eugène"; | |||
display: block; | |||
font-size: 1.6em; | |||
font-weight: bold; | |||
text-align: center; | |||
padding: 15px; | |||
background-color: #2c2c2c; | |||
color: #ffffff; | |||
border-bottom: 2px solid #444; | |||
} | |||
/* 🔗 Liens stylisés */ | |||
a { | |||
color: #80c0ff; | |||
text-decoration: none; | |||
} | |||
a:hover { | |||
color: #a0d0ff; | |||
text-decoration: underline; | |||
} | |||
/* 📄 Encadrés pour les sections */ | |||
.mw-headline { | |||
border-left: 4px solid #80c0ff; | |||
padding-left: 10px; | |||
margin-top: 30px; | |||
font-size: 1.3em; | |||
color: #ffffff; | |||
} | |||
/* 📋 Tableaux lisibles */ | |||
table.wikitable { | |||
background-color: #2a2a2a; | |||
color: #e0e0e0; | |||
border: 1px solid #444; | |||
} | |||
table.wikitable th { | |||
background-color: #3a3a3a; | |||
color: #ffffff; | |||
} | |||
table.wikitable td { | |||
border: 1px solid #444; | |||
} | |||
/* 🧠 Notes ou encadrés personnalisés */ | |||
.note { | |||
background-color: #333; | |||
border-left: 4px solid #80c0ff; | |||
padding: 10px; | |||
margin: 10px 0; | |||
color: #ccc; | |||
font-style: italic; | |||
} | |||
Version du 9 septembre 2025 à 17:21
/* 🌙 Fond sombre et texte clair */
body {
background-color: #1e1e1e;
color: #e0e0e0;
font-family: "Segoe UI", "Helvetica Neue", sans-serif;
}
/* 📦 Centrage du contenu */
.citizen-content {
max-width: 1000px;
margin: auto;
padding: 20px;
}
/* 🧭 Titre principal stylisé */
.firstHeading {
font-size: 2em;
font-weight: bold;
color: #ffffff;
text-align: center;
margin-bottom: 20px;
}
/* 🖼️ Bannière personnalisée */
.citizen-header::before {
content: "📚 Wiki d’Eugène";
display: block;
font-size: 1.6em;
font-weight: bold;
text-align: center;
padding: 15px;
background-color: #2c2c2c;
color: #ffffff;
border-bottom: 2px solid #444;
}
/* 🔗 Liens stylisés */
a {
color: #80c0ff;
text-decoration: none;
}
a:hover {
color: #a0d0ff;
text-decoration: underline;
}
/* 📄 Encadrés pour les sections */
.mw-headline {
border-left: 4px solid #80c0ff;
padding-left: 10px;
margin-top: 30px;
font-size: 1.3em;
color: #ffffff;
}
/* 📋 Tableaux lisibles */
table.wikitable {
background-color: #2a2a2a;
color: #e0e0e0;
border: 1px solid #444;
}
table.wikitable th {
background-color: #3a3a3a;
color: #ffffff;
}
table.wikitable td {
border: 1px solid #444;
}
/* 🧠 Notes ou encadrés personnalisés */
.note {
background-color: #333;
border-left: 4px solid #80c0ff;
padding: 10px;
margin: 10px 0;
color: #ccc;
font-style: italic;
}