« MediaWiki:Citizen.css » : différence entre les versions
Page de l’interface de MediaWiki
Autres actions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
| Ligne 35 : | Ligne 35 : | ||
} | } | ||
/* 🔥 Masquer les footers natifs de MediaWiki */ | |||
#mw-footer-container, | |||
#footer-poweredby, | |||
#footer-places, | |||
#footer-info-lastmod { | |||
display: none !important; | |||
} | |||
/* 📦 Footer personnalisé (Modèle:Footer) */ | |||
.wiki-footer { | .wiki-footer { | ||
text-align: center; | text-align: center; | ||
font-size: 0. | font-size: 0.85em; | ||
color: #aaa; | color: #aaa; | ||
margin-top: 40px; | margin-top: 40px; | ||
padding: 20px 0; | padding: 20px 0; | ||
border-top: 1px solid #444; | border-top: 1px solid #444; | ||
background-color: #1e1e1e; | |||
} | } | ||
.wiki-footer a { | .wiki-footer a { | ||
color: #80c0ff; | color: #80c0ff; | ||
| Ligne 48 : | Ligne 59 : | ||
margin: 0 8px; | margin: 0 8px; | ||
} | } | ||
.wiki-footer a:hover { | .wiki-footer a:hover { | ||
color: #a0d0ff; | color: #a0d0ff; | ||
text-decoration: underline; | text-decoration: underline; | ||
} | } | ||
Version du 10 septembre 2025 à 13:39
/* 📦 Centrage du contenu sans tronquer */
.citizen-content {
max-width: 1000px;
margin-left: auto;
margin-right: auto;
padding: 20px;
overflow: visible;
word-wrap: break-word;
}
/* 🧭 Sommaire intégré et fluide */
#toc {
float: none;
width: auto;
max-width: 300px;
margin: 20px auto;
background-color: #2a2a2a;
border: 1px solid #444;
padding: 10px;
color: #ccc;
overflow: auto;
}
/* 🧠 Titres et paragraphes lisibles */
.mw-headline {
border-left: 4px solid #80c0ff;
padding-left: 10px;
margin-top: 30px;
font-size: 1.3em;
color: #ffffff;
}
p {
line-height: 1.6;
word-break: break-word;
}
/* 🔥 Masquer les footers natifs de MediaWiki */
#mw-footer-container,
#footer-poweredby,
#footer-places,
#footer-info-lastmod {
display: none !important;
}
/* 📦 Footer personnalisé (Modèle:Footer) */
.wiki-footer {
text-align: center;
font-size: 0.85em;
color: #aaa;
margin-top: 40px;
padding: 20px 0;
border-top: 1px solid #444;
background-color: #1e1e1e;
}
.wiki-footer a {
color: #80c0ff;
text-decoration: none;
margin: 0 8px;
}
.wiki-footer a:hover {
color: #a0d0ff;
text-decoration: underline;
}