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

De ObsoWiki
Aucun résumé des modifications
Aucun résumé des modifications
 
Ligne 41 : Ligne 41 :
     background-color: #2C3E50;
     background-color: #2C3E50;
     color: white;
     color: white;
     padding: 15px 0;
     padding: 20px 0;
     font-size: 0.9em;
     font-size: 0.9em;
    flex-wrap: wrap;
}
}


.footer-section {
.footer-section {
     max-width: 200px;
     max-width: 200px;
    margin: 10px;
}
.footer-section h4 {
    font-size: 1.1em;
    color: #ECF0F1;
    margin-bottom: 8px;
}
.footer-section p, .footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
}


Ligne 60 : Ligne 74 :
.footer-credits {
.footer-credits {
     text-align: center;
     text-align: center;
     margin-top: 10px;
    width: 100%;
     margin-top: 15px;
     font-size: 0.8em;
     font-size: 0.8em;
     color: #BDC3C7;
     color: #BDC3C7;
}
}

Dernière version du 30 octobre 2024 à 16:07

/* Le CSS placé ici sera appliqué à tous les habillages. */

/* Styliser les titres et sous-titres :*/


h1, h2, h3 {
    font-family: Arial, sans-serif;
    color: #1A3F98; /* Couleur personnalisée */
    border-bottom: 1px solid #BDC3C7; /* Ligne sous les titres */
    padding-bottom: 4px;
}

/*Encadrer les sections spécifiques, comme les boîtes d'avertissement :*/


.warning-box {
    background-color: #F9EBEA;
    border: 1px solid #E74C3C;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

/*Créer des styles pour les étapes (comme sur wikiHow) :*/
.step-box {
    background-color: #ECF0F1;
    border-left: 5px solid #3498DB;
    padding: 10px;
    margin: 10px 0;
}
.step-number {
    font-weight: bold;
    color: #3498DB;
}


/*Ajouter le CSS pour le pied de page*/
.footer-content {
    display: flex;
    justify-content: space-around;
    background-color: #2C3E50;
    color: white;
    padding: 20px 0;
    font-size: 0.9em;
    flex-wrap: wrap;
}

.footer-section {
    max-width: 200px;
    margin: 10px;
}

.footer-section h4 {
    font-size: 1.1em;
    color: #ECF0F1;
    margin-bottom: 8px;
}

.footer-section p, .footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section a {
    color: #ECF0F1;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-credits {
    text-align: center;
    width: 100%;
    margin-top: 15px;
    font-size: 0.8em;
    color: #BDC3C7;
}