« MediaWiki:Common.css » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
| Ligne 15 : | Ligne 15 : | ||
padding: 20px; | padding: 20px; | ||
border-radius: 8px; | border-radius: 8px; | ||
color: #333333; /* Couleur de texte principale */ | color: #333333; /* Couleur de texte principale */ | ||
} | } | ||
| Ligne 23 : | Ligne 22 : | ||
h1 { | h1 { | ||
color: #0056b3; /* Couleur spécifique pour le titre de niveau 1 */ | color: #0056b3; /* Couleur spécifique pour le titre de niveau 1 */ | ||
font-weight: 700; /* Poids du texte pour un effet gras */ | font-weight: 700; /* Poids du texte pour un effet gras */ | ||
} | } | ||
| Ligne 29 : | Ligne 27 : | ||
h2 { | h2 { | ||
color: #007ACC; /* Couleur pour les sous-titres de niveau 2 */ | color: #007ACC; /* Couleur pour les sous-titres de niveau 2 */ | ||
font-weight: 600; | font-weight: 600; | ||
} | } | ||
| Ligne 35 : | Ligne 32 : | ||
h3, h4, h5, h6 { | h3, h4, h5, h6 { | ||
color: #3399FF; /* Couleur des sous-titres de niveau inférieur */ | color: #3399FF; /* Couleur des sous-titres de niveau inférieur */ | ||
font-weight: 500; | font-weight: 500; | ||
} | } | ||
| Ligne 46 : | Ligne 42 : | ||
border-radius: 8px; | border-radius: 8px; | ||
padding: 10px; | padding: 10px; | ||
color: #333333; | color: #333333; | ||
} | } | ||
| Ligne 56 : | Ligne 51 : | ||
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); | box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); | ||
border-radius: 4px; | border-radius: 4px; | ||
} | } | ||
| Ligne 64 : | Ligne 58 : | ||
color: #0056b3; /* Couleur de base des liens */ | color: #0056b3; /* Couleur de base des liens */ | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
| Ligne 81 : | Ligne 74 : | ||
border-top: 1px solid #CCCCCC; | border-top: 1px solid #CCCCCC; | ||
box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); | box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); | ||
} | } | ||
| Ligne 92 : | Ligne 84 : | ||
padding: 10px 20px; | padding: 10px 20px; | ||
border-radius: 5px; | border-radius: 5px; | ||
font-weight: bold; | font-weight: bold; | ||
} | } | ||
Version du 9 novembre 2024 à 13:04
/* ---- Couleurs et polices globales ---- */
/* Couleur de fond générale */
body {
background-color: #F5F5F5; /* Ajuste avec la couleur de fond de TC-Dossiers.fr */
font-family: "Gill Sans", sans-serif ; /* Change avec la police principale de TC-Dossiers.fr */
}
/* ---- Conteneurs et contenu principal ---- */
/* Conteneur principal de l'article */
#content {
background-color: #FFFFFF; /* Couleur du conteneur principal */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Ombre douce */
padding: 20px;
border-radius: 8px;
color: #333333; /* Couleur de texte principale */
}
/* ---- Couleur et style des titres ---- */
h1 {
color: #0056b3; /* Couleur spécifique pour le titre de niveau 1 */
font-weight: 700; /* Poids du texte pour un effet gras */
}
h2 {
color: #007ACC; /* Couleur pour les sous-titres de niveau 2 */
font-weight: 600;
}
h3, h4, h5, h6 {
color: #3399FF; /* Couleur des sous-titres de niveau inférieur */
font-weight: 500;
}
/* ---- Style des panneaux latéraux ---- */
#mw-panel, #p-personal, #p-logo {
background-color: #E9E9E9;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
padding: 10px;
color: #333333;
}
/* ---- Barre de recherche ---- */
#p-search {
background-color: #FFFFFF;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 4px;
}
/* ---- Style des liens ---- */
.vector-menu-content a, #content a {
color: #0056b3; /* Couleur de base des liens */
text-decoration: none;
}
.vector-menu-content a:hover, #content a:hover {
color: #003366; /* Couleur au survol des liens */
text-decoration: underline;
}
/* ---- Pied de page ---- */
#footer {
background-color: #E9E9E9;
color: #666666;
padding: 15px;
text-align: center;
border-top: 1px solid #CCCCCC;
box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
}
/* ---- Boutons et formulaires ---- */
button, input[type="submit"], input[type="button"] {
background-color: #0056b3; /* Couleur des boutons */
color: #FFFFFF;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-weight: bold;
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover {
background-color: #003366; /* Couleur au survol des boutons */
}