« MediaWiki:Common.css » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 32 : | Ligne 32 : | ||
font-weight: bold; | font-weight: bold; | ||
color: #3498DB; | color: #3498DB; | ||
} | |||
/*Ajouter le CSS pour le pied de page*/ | |||
.footer-content { | |||
display: flex; | |||
justify-content: space-around; | |||
background-color: #2C3E50; | |||
color: white; | |||
padding: 15px 0; | |||
font-size: 0.9em; | |||
} | |||
.footer-section { | |||
max-width: 200px; | |||
} | |||
.footer-section a { | |||
color: #ECF0F1; | |||
text-decoration: none; | |||
} | |||
.footer-section a:hover { | |||
text-decoration: underline; | |||
} | |||
.footer-credits { | |||
text-align: center; | |||
margin-top: 10px; | |||
font-size: 0.8em; | |||
color: #BDC3C7; | |||
} | } |
Version du 30 octobre 2024 à 15:54
/* 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: 15px 0; font-size: 0.9em; } .footer-section { max-width: 200px; } .footer-section a { color: #ECF0F1; text-decoration: none; } .footer-section a:hover { text-decoration: underline; } .footer-credits { text-align: center; margin-top: 10px; font-size: 0.8em; color: #BDC3C7; }