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

De HyperCodex
Aucun résumé des modifications
mAucun résumé des modifications
Ligne 44 : Ligne 44 :
}
}
.bandeau-img {  /* image du bandeau */
.bandeau-img {  /* image du bandeau */
  width:100px;
  width: 5em;
  height:150px;
  /* height has an automatic value*/
}
}
.bandeau p {  /* texte central du bandeau */
.bandeau p {  /* texte central du bandeau */

Version du 29 avril 2024 à 21:40

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

/* FLEXBOX */

.flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

/* CADRES POUR PAGE D'ACCUEIL */

.accueil_cadre {
 box-shadow:0 0 0.3rem #999;
 border-radius:0.2rem;
 padding:1.2rem;
 margin-bottom:1.6rem
}
.accueil_cadre h2 {
 font-variant:small-caps;
 letter-spacing:0.01em;
 border-bottom:solid 0.2rem #bdd8fb;
 margin:-0.4rem 0 0.5rem
}
.accueil_pied {
 margin-top:1.8em;
 font-size:85%;
 text-align:right
}

/* BANDEAU EN HAUT DES PAGES */

.bandeau {
 min-height: 5em;
 margin:auto;
 padding: .5em 1em;
 background-color: aliceblue;
 border: lavender 1px solid;
}
.bandeau.attention { 
 background-color: lightpink;
 border: lightsalmon 1px solid;
}
.bandeau-img {  /* image du bandeau */
 width: 5em;
 /* height has an automatic value*/
}
.bandeau p {  /* texte central du bandeau */
 margin: 1em 110px;
}
.détails {
 font-size:90%;
 background-color:floralwhite;
 cursor:help;
}