MediaWiki:Common.css: Difference between revisions
Nick White (talk | contribs) (Created page with "→CSS placed here will be applied to all skins: →make main links on homepage look more like buttons: #homebtns h2 { text-align: center; border: 1px solid #ccc;...") |
Nick White (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
/* make main links on homepage look more like buttons */ | /* make main links on homepage look more like buttons */ | ||
#homebtns | #homebtns a { | ||
text-align: center; | text-align: center; | ||
border: 1px solid #ccc; | border: 1px solid #ccc; |
Revision as of 16:21, 19 November 2012
/* CSS placed here will be applied to all skins */ /* make main links on homepage look more like buttons */ #homebtns a { text-align: center; border: 1px solid #ccc; background-color: white; padding: 0.7ex 1em; width: 6em; margin: 0.5ex auto 1ex; } /* make table cells of class 'box' stand out */ td.box { border: 1px solid #ccc; background-color: white; padding: 1ex 1em; } /* make spans of class 'box' stand out */ span.box { border: 1px solid #ccc; background-color: white; padding: 1em; }