« MediaWiki:Common.css » : différence entre les versions
Aller à la navigation
Aller à la recherche
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 7 : | Ligne 7 : | ||
margin-bottom: 0.5em; | margin-bottom: 0.5em; | ||
padding: 0.8em; | padding: 0.8em; | ||
} | |||
#mw-content-text > .portail-bloc:first-of-type { | |||
border-radius: 8px 8px 0px 0px; | |||
-moz-border-radius: 8px 8px 0px 0px; | |||
-webkit-border-radius: 8px 8px 0px 0px; | |||
} | |||
#mw-content-text > .portail-bloc:last-of-type { | |||
border-radius: 0px 0px 8px 8px; | |||
-moz-border-radius: 0px 0px 8px 8px; | |||
-webkit-border-radius: 0px 0px 8px 8px; | |||
} | |||
.bloc-ligne { | |||
display:-ms-flexbox; | |||
display:flex; | |||
-ms-flex-align: stretch; | |||
align-items: stretch; | |||
-ms-flex-pack: justify; | |||
justify-content: space-between; | |||
} | } |
Version du 27 mars 2020 à 16:40
/** Le CSS placé ici sera appliqué à toutes les apparences. */ /*** Portails ***/ /* Général */ .portail-bloc { border:2px solid #b9cce4; margin-bottom: 0.5em; padding: 0.8em; } #mw-content-text > .portail-bloc:first-of-type { border-radius: 8px 8px 0px 0px; -moz-border-radius: 8px 8px 0px 0px; -webkit-border-radius: 8px 8px 0px 0px; } #mw-content-text > .portail-bloc:last-of-type { border-radius: 0px 0px 8px 8px; -moz-border-radius: 0px 0px 8px 8px; -webkit-border-radius: 0px 0px 8px 8px; } .bloc-ligne { display:-ms-flexbox; display:flex; -ms-flex-align: stretch; align-items: stretch; -ms-flex-pack: justify; justify-content: space-between; }