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

De Les Archives Infinies
Aucun résumé des modifications
Balise : Révocation manuelle
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
/* Bandeau en haut de page */
/* Bandeau en haut de page */
#site-header {
#site-header {
     background-color: #005288; /* couleur de fond */
     background-image: url("e/e3/Bandeau-codex-allégé.jpg");
     color: white; /* couleur du texte */
    background-size: cover;
     padding: 15px;
    background-position: center;
     font-size: 22px;
    height: 180px;
     color: #f0e6d6;
     font-family: 'MedievalSharp', cursive;
     font-size: 32px;
     text-align: center;
     text-align: center;
     font-weight: bold;
     padding-top: 50px;
    text-shadow: 2px 2px 4px #000;
     position: fixed;
     position: fixed;
     top: 0;
     top: 0;
     width: 100%;
     width: 100%;
     z-index: 9999;
     z-index: 9999;
     box-shadow: 0 2px 6px rgba(0,0,0,0.2);
     box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
}



Version du 29 mars 2025 à 01:41

/* Bandeau en haut de page */
#site-header {
    background-image: url("e/e3/Bandeau-codex-allégé.jpg");
    background-size: cover;
    background-position: center;
    height: 180px;
    color: #f0e6d6;
    font-family: 'MedievalSharp', cursive;
    font-size: 32px;
    text-align: center;
    padding-top: 50px;
    text-shadow: 2px 2px 4px #000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* Décale le contenu vers le bas pour ne pas être caché par le bandeau */
body {
    padding-top: 60px;
}