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

De Projet Lazare · Empire Drasheev
Aller à la navigation Aller à la recherche
Page créée avec « Le CSS placé ici sera appliqué à tous les habillages. : ===== FOND D'ÉCRAN ===== : body { background-color: #0d0d1a; background-image: url("/images/Fond_Wiki.png"); : background-repeat: no-repeat; background-position: center top; background-attachment: fixed; background-size: cover; } ===== COLONNE DE CONTENU RESSERRÉE ===== : #content, #mw-content-container { max-width: 900px; margin: 0 auto; background-col... »
 
Aucun résumé des modifications
 
(2 versions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
/* Le CSS placé ici sera appliqué à tous les habillages. */
/* ===== FOND D'ÉCRAN ===== */
/* ===== FOND D'ÉCRAN ===== */
body {
body {
     background-color: #0d0d1a;
     background-color: #0d0d1a;
     /*background-image: url("/images/Fond_Wiki.png");*/
     background-image: url("https://wiki-lazare.fr/wiki/Fichier:Fond_Wiki.png");
     background-repeat: no-repeat;
     background-repeat: no-repeat;
     background-position: center top;
     background-position: center top;

Dernière version du 22 avril 2026 à 18:03

/* ===== FOND D'ÉCRAN ===== */
body {
    background-color: #0d0d1a;
    background-image: url("https://wiki-lazare.fr/wiki/Fichier:Fond_Wiki.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: cover;
}

/* ===== COLONNE DE CONTENU RESSERRÉE ===== */
#content,
#mw-content-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-left: 1px solid #c0c0c0;
    border-right: 1px solid #c0c0c0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* ===== BARRE DE NAVIGATION (sidebar) ===== */
#mw-panel {
    background-color: rgba(13, 13, 26, 0.85);
}

#mw-panel .vector-menu-portal .vector-menu-heading {
    color: #c0c0e0;
}

#mw-panel .vector-menu-portal a {
    color: #a0a0d0;
}

#mw-panel .vector-menu-portal a:hover {
    color: #ffffff;
}

/* ===== HEADER ===== */
#mw-head {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
#footer {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(13, 13, 26, 0.9);
    color: #a0a0c0;
}

#footer a {
    color: #7ecda0;
}

/* ===== LIENS ===== */
#content a:not(.new) {
    color: #4a3a7a;
}

#content a:visited {
    color: #3a2a5a;
}

#content a.new {
    color: #c04040;
}