Basculer le menu
Changer de menu des préférences
Basculer le menu personnel
Non connecté(e)
Votre adresse IP sera visible au public si vous faites des modifications.

« MediaWiki:Citizen.css » : différence entre les versions

Page de l’interface de MediaWiki
Page créée avec « La totalité du CSS placé ici s’appliquera aux utilisateurs de l’habillage Citizen. : .citizen-content { max-width: 1000px; margin: auto; } .citizen-header::before { content: "Wiki ECInfo"; display: block; font-size: 1.8em; font-weight: bold; text-align: center; padding: 10px; background-color: #2c2c2c; color: #ffffff; } »
 
Aucun résumé des modifications
 
(15 versions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
/* La totalité du CSS placé ici s’appliquera aux utilisateurs de l’habillage Citizen. */
/* 📦 Centrage du contenu sans tronquer */
.citizen-content {
.citizen-content {
   max-width: 1000px;
   max-width: 1000px;
   margin: auto;
   margin-left: auto;
  margin-right: auto;
  padding: 20px;
  overflow: visible;
  word-wrap: break-word;
}
}


.citizen-header::before {
/* 🧭 Sommaire intégré et fluide */
   content: "Wiki ECInfo";
#toc {
   display: block;
   float: none;
   font-size: 1.8em;
   width: auto;
   font-weight: bold;
   max-width: 300px;
   text-align: center;
   margin: 20px auto;
  background-color: #2a2a2a;
   border: 1px solid #444;
   padding: 10px;
   padding: 10px;
   background-color: #2c2c2c;
   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;
   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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85em;
  color: #aaa;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #444;
  background-color: #1e1e1e;
  width: 100%;
  box-sizing: border-box;
}
.wiki-footer a {
  color: #80c0ff;
  text-decoration: none;
  margin: 0 8px;
}
.wiki-footer a:hover {
  color: #a0d0ff;
  text-decoration: underline;
}
.bloc-technique {
  background-color: #1e1e1e;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 20px;
  margin: 20px auto;
  max-width: 900px;
  color: #ccc;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.bloc-technique ul {
  margin-left: 20px;
}
.bloc-technique h3 {
  color: #80c0ff;
  margin-top: 20px;
}
}

Dernière version du 10 septembre 2025 à 15:16

/* 📦 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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85em;
  color: #aaa;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #444;
  background-color: #1e1e1e;
  width: 100%;
  box-sizing: border-box;
}

.wiki-footer a {
  color: #80c0ff;
  text-decoration: none;
  margin: 0 8px;
}

.wiki-footer a:hover {
  color: #a0d0ff;
  text-decoration: underline;
}

.bloc-technique {
  background-color: #1e1e1e;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 20px;
  margin: 20px auto;
  max-width: 900px;
  color: #ccc;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.bloc-technique ul {
  margin-left: 20px;
}

.bloc-technique h3 {
  color: #80c0ff;
  margin-top: 20px;
}