MediaWiki:Common.css: Difference between revisions
Created page with "→CSS placed here will be applied to all skins: →Rounded type chart: .typechartcell { border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; }" |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Rounded | /* Rounded */ | ||
. | .rounded5 { | ||
border-radius: 5px; | border-radius: 5px; | ||
-moz-border-radius: 5px; | -moz-border-radius: 5px; | ||
Line 9: | Line 9: | ||
-icab-border-radius: 5px; | -icab-border-radius: 5px; | ||
-o-border-radius: 5px; | -o-border-radius: 5px; | ||
} | |||
.rounded10 { | |||
border-radius: 10px; | |||
-moz-border-radius: 10px; | |||
-webkit-border-radius: 10px; | |||
-khtml-border-radius: 10px; | |||
-icab-border-radius: 10px; | |||
-o-border-radius: 10px; | |||
} | |||
#footer-icons a { | |||
vertical-align: bottom; | |||
width: auto; | |||
margin-left: 5px; | |||
} | } |