MediaWiki:Common.css
De Microfly.info.
(Différences entre les versions)
m (Page créée avec « – →Le CSS placé ici sera appliqué à tous les habillages. : .rounded-corners { -moz-border-radius: 3px; -webkit-border-radius: 3px; -khtml-border-radius: 3p... ») |
m |
||
Ligne 1 : | Ligne 1 : | ||
/* Le CSS placé ici sera appliqué à tous les habillages. */ | /* Le CSS placé ici sera appliqué à tous les habillages. */ | ||
.rounded-corners { | .rounded-corners { | ||
- | -moz-border-radius: 3px; | + | -moz-border-radius: 3px 3px 0 0; |
- | -webkit-border-radius: 3px; | + | -webkit-border-radius: 3px 3px 0 0; |
- | -khtml-border-radius: 3px; | + | -khtml-border-radius: 3px 3px 0 0; |
- | border-radius: 3px; | + | border-radius: 3px 3px 0 0; |
+ | background-color: silver; | ||
+ | margin: 0 2px; | ||
+ | padding: 1px 3px; | ||
+ | border-left: 1px solid grey; | ||
+ | border-top: 1px solid grey; | ||
+ | border-right: 1px outset grey; | ||
} | } |
Version du 8 juin 2011 à 10:21
/* Le CSS placé ici sera appliqué à tous les habillages. */ .rounded-corners { -moz-border-radius: 3px 3px 0 0; -webkit-border-radius: 3px 3px 0 0; -khtml-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; background-color: silver; margin: 0 2px; padding: 1px 3px; border-left: 1px solid grey; border-top: 1px solid grey; border-right: 1px outset grey; }