Aller au contenu

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

De Wiki Éducation
Aucun résumé des modifications
Balise : Révocation manuelle
Aucun résumé des modifications
Ligne 22 : Ligne 22 :
     margin: 10px 0;
     margin: 10px 0;
     padding: 10px 15px;
     padding: 10px 15px;
     background-color: #f8f9fa;
     background-color: var(--background-color-neutral-subtle);
     border: 1px solid #a2a9b1;
     border: 1px solid var(--border-color-base);
     border-left: 10px solid #3366cc; /* Rappel du bleu de ton infobox */
     border-left: 10px solid #3366cc;
     display: flex;
     display: flex;
     align-items: center;
     align-items: center;
     border-radius: 4px;
     border-radius: 4px;
}
}
.bandeau-ebauche-icone {
.bandeau-ebauche-icone {
     font-size: 24px;
     font-size: 24px;
     margin-right: 15px;
     margin-right: 15px;
}
}
.bandeau-ebauche-texte {
.bandeau-ebauche-texte {
     font-size: 0.9em;
     font-size: 0.9em;
     line-height: 1;
     line-height: 1;
     font-family: inherit;
     font-family: inherit;
    color: var(--color-base);
}
}

Version du 15 avril 2026 à 11:25

/* Le CSS placé ici sera appliqué à tous les habillages. */
/* Style pour le boîtier de documentation */
.template-documentation {
    background-color: #f8f9fa;
    border: 1px solid #a2a9b1;
    padding: 1em;
    margin-top: 1em;
    clear: both;
    border-left: 5px solid #3366cc; /* Une barre bleue pour le côté éducatif */
}

.template-documentation-header {
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
}

/* Style pour les bandeaux d'avertissement (Ébauche) */
.bandeau-ebauche {
    margin: 10px 0;
    padding: 10px 15px;
    background-color: var(--background-color-neutral-subtle);
    border: 1px solid var(--border-color-base);
    border-left: 10px solid #3366cc;
    display: flex;
    align-items: center;
    border-radius: 4px;
}
.bandeau-ebauche-icone {
    font-size: 24px;
    margin-right: 15px;
}
.bandeau-ebauche-texte {
    font-size: 0.9em;
    line-height: 1;
    font-family: inherit;
    color: var(--color-base);
}