MediaWiki:Common.css
From Card Hunter Wiki
(Difference between revisions)
Line 26: | Line 26: | ||
div#mw-panel div.portal div.body ul li a:visited { color: rgb(50, 131, 204); } | div#mw-panel div.portal div.body ul li a:visited { color: rgb(50, 131, 204); } | ||
− | /* New color for 'Navigation' and 'Toolbox' text */ | + | /* New color for 'Navigation' and 'Toolbox' text, push to skin css when possible */ |
div#mw-panel div.portal h5 { color: rgb(179, 128, 0); } | div#mw-panel div.portal h5 { color: rgb(179, 128, 0); } | ||
Line 32: | Line 32: | ||
html, body, h1, h2, h3, h4, h5, h6, div#content, #p-personal, div#simpleSearch, div#simpleSearch input, #p-search input#searchInput, table.wikitable { color: rgb(224, 224, 224); } | html, body, h1, h2, h3, h4, h5, h6, div#content, #p-personal, div#simpleSearch, div#simpleSearch input, #p-search input#searchInput, table.wikitable { color: rgb(224, 224, 224); } | ||
+ | /* Pre settings */ | ||
pre { | pre { | ||
background:transparent; | background:transparent; | ||
Line 38: | Line 39: | ||
word-wrap:break-word; | word-wrap:break-word; | ||
} | } | ||
+ | |||
+ | .mw-body a.external {color: rgb(90, 147, 204);} | ||
+ | .mw-body a.external:visited {color: rgb(50, 131, 204);} |
Revision as of 20:23, 7 February 2013
/* CSS placed here will be applied to all skins */ div.printfooter { display: none; } /* These should not be here and its here as a quick hack to resolve formatting, push to skin css when possible*/ #catlinks, ul#filetoc, table.mw_metadata td { background-color: rgb(24, 24, 24); border-color: rgb(8, 8, 8); } /* Large white boxes everywhere are transparent now, push to skin css when possible */ code, #p-search input#searchInput, table, table.wikitable, table.wikitable > tbody > tr > th { background:transparent; } /* New softer colors for readable commonElement links throughout the wiki */ a.new:link { color: rgb(166, 50, 50);} a.new:visited { color: rgb(166, 50, 50); } a:link { color: rgb(90, 147, 204);} a:visited { color: rgb(50, 131, 204); } /* New softer colors for readable content links in a page */ div#content ul li a { color: rgb(90, 147, 204); } div#content ul li a:visited { color: rgb(50, 131, 204); } /* color for vectorTabs 'View/Edit/History' */ div.vectorTabs li a { color: rgb(90, 147, 204); } /* color for links in Navigation and Toolbox * div#mw-panel div.portal div.body ul li a { color: rgb(90, 147, 204); } div#mw-panel div.portal div.body ul li a:visited { color: rgb(50, 131, 204); } /* New color for 'Navigation' and 'Toolbox' text, push to skin css when possible */ div#mw-panel div.portal h5 { color: rgb(179, 128, 0); } /* The garish bright white font everywhere is replaced by this */ html, body, h1, h2, h3, h4, h5, h6, div#content, #p-personal, div#simpleSearch, div#simpleSearch input, #p-search input#searchInput, table.wikitable { color: rgb(224, 224, 224); } /* Pre settings */ pre { background:transparent; color: rgb(224, 224, 224); white-space:pre-wrap; word-wrap:break-word; } .mw-body a.external {color: rgb(90, 147, 204);} .mw-body a.external:visited {color: rgb(50, 131, 204);}