« MediaWiki:Vector.css » : différence entre les versions
Aller à la navigation
Aller à la recherche
Contenu supprimé Contenu ajouté
Aucun résumé des modifications |
Aucun résumé des modifications |
||
| Ligne 9 : | Ligne 9 : | ||
#mw-page-base { |
#mw-page-base { |
||
background-color: #696969; |
background-color: #696969; |
||
background-image: -webkit-gradient(linear,right top,right bottom,color-stop(50%,#a9a9a9),color-stop(100%,#696969)); |
|||
background-image : none; |
|||
background-image: -webkit-linear-gradient(top,#a9a9a9 50%,#696969 100%); |
|||
background-image: -moz-linear-gradient(top,#a9a9a9 50%,#696969 100%); |
|||
background-image: linear-gradient(to bottom,#a9a9a9 50%,#696969 100%); |
|||
} |
} |
||
Version du 1 février 2021 à 10:25
/* Le CSS placé ici affectera les utilisateurs de l’habillage Vector. */
/* page complète */
.mediawiki {
background-color: #696969;
}
#mw-page-base {
background-color: #696969;
background-image: -webkit-gradient(linear,right top,right bottom,color-stop(50%,#a9a9a9),color-stop(100%,#696969));
background-image: -webkit-linear-gradient(top,#a9a9a9 50%,#696969 100%);
background-image: -moz-linear-gradient(top,#a9a9a9 50%,#696969 100%);
background-image: linear-gradient(to bottom,#a9a9a9 50%,#696969 100%);
}
/* css contenu principal */
.mw-body {
background-color: #2c2c2c;
border: 1px solid #ffa500;
color: #fff;
}
/* changing color of sections/subsections */
h1 {
color: #ffa500;
}
h2 {
color: #ffa500;
}
h3 {
color: #ffa500;
}
h4 {
color: #ffa500;
}
h5 {
color: #ffa500;
}
h6 {
color: #ffa500;
}
/* underligning */
.firstHeading {
border-bottom: 1px solid #ffa500;
}