MediaWiki:Common.css
From Dark Omen Wiki
(Difference between revisions)
Bembelimen (Talk | contribs) (prettytable) |
|||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
+ | |||
+ | |||
.wikitable, | .wikitable, | ||
+ | .codetable | ||
.prettytable { | .prettytable { | ||
margin: 1em 1em 1em 0; | margin: 1em 1em 1em 0; | ||
Line 10: | Line 13: | ||
} | } | ||
+ | .codetable { | ||
+ | tr:nth-child(odd) { background-color:#eee; } | ||
+ | tr:nth-child(even) { background-color:#fff; } | ||
+ | } | ||
+ | |||
.wikitable th, .wikitable td, | .wikitable th, .wikitable td, | ||
+ | .codetable th, .codetable td, | ||
.prettytable th, .prettytable td { | .prettytable th, .prettytable td { | ||
border: 1px #AAA solid; | border: 1px #AAA solid; | ||
padding: 0.3em; | padding: 0.3em; | ||
} | } | ||
+ | |||
+ | |||
.wikitable caption, | .wikitable caption, | ||
+ | .codetable caption, | ||
.prettytable caption { | .prettytable caption { | ||
margin-left: inherit; | margin-left: inherit; |
Revision as of 20:41, 19 September 2008
/* CSS placed here will be applied to all skins */ .wikitable, .codetable .prettytable { margin: 1em 1em 1em 0; background: #D7E1D7; for the new Design border: 1px #AAA solid; border-collapse: collapse; empty-cells:show; } .codetable { tr:nth-child(odd) { background-color:#eee; } tr:nth-child(even) { background-color:#fff; } } .wikitable th, .wikitable td, .codetable th, .codetable td, .prettytable th, .prettytable td { border: 1px #AAA solid; padding: 0.3em; } .wikitable caption, .codetable caption, .prettytable caption { margin-left: inherit; margin-right: inherit; font-weight: bold; } .nogrid th, .nogrid td {border: none;} .float-left { float: left; clear: left; } .float-right { float: right; clear: right; margin: 1em 0 1em 1em; } .centered { margin-left: auto; margin-right: auto; } table.boxes { margin: 4px 10%; border-collapse: collapse; border: 1px solid #aaa; /* Default "notice" gray */ background: #f9f9f9; } table.boxes-notice { border: 1px solid #aaa; } th.boxes-text, td.boxes-text { /* The message body cell(s) */ border: none; padding: 0.25em 0.9em; /* 0.9em left/right */ width: 100%; } td.boxes-image { /* The left image cell */ border: none; padding: 2px 0 2px 0.9em; /* 0.9em left, 0px right */ text-align: center; }