Difference between revisions of "MediaWiki:Common.css"
From Wulfgard Wiki
(Created page with "→CSS placed here will be applied to all skins: #content, #content table #p-cactions ul li a { background: #dfdbc3; }") |
|||
(15 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 */ | ||
− | # | + | a { |
− | #p- | + | text-decoration: none; |
+ | color: #08a500; | ||
+ | background: none; | ||
+ | } | ||
+ | a:visited { | ||
+ | color: #045b00; | ||
+ | } | ||
+ | a:active { | ||
+ | color: #0cff00; | ||
+ | } | ||
+ | a:hover, a:focus { | ||
+ | text-decoration: underline; | ||
+ | } | ||
+ | a.stub { | ||
+ | color: #772233; | ||
+ | } | ||
+ | a.new, #p-personal a.new { | ||
+ | color: #ba0000; | ||
+ | } | ||
+ | a.new:visited, #p-personal a.new:visited { | ||
+ | color: #a55858; | ||
+ | } | ||
+ | |||
+ | /* Interwiki Styling */ | ||
+ | .mw-body a.extiw, | ||
+ | .mw-body a.extiw:active { | ||
+ | color: #08a500; | ||
+ | } | ||
+ | .mw-body a.extiw:visited { | ||
+ | color: #045b00; | ||
+ | } | ||
+ | .mw-body a.extiw:active { | ||
+ | color: #0cff00; | ||
+ | } | ||
+ | |||
+ | /* External links */ | ||
+ | .mw-body a.external { | ||
+ | color: #08a500; | ||
+ | } | ||
+ | .mw-body a.external:visited { | ||
+ | color: #045b00; /* bug 3112 */ | ||
+ | } | ||
+ | .mw-body a.external:active { | ||
+ | color: #0cff00; | ||
+ | } |
Latest revision as of 00:29, 12 March 2017
/* CSS placed here will be applied to all skins */ a { text-decoration: none; color: #08a500; background: none; } a:visited { color: #045b00; } a:active { color: #0cff00; } a:hover, a:focus { text-decoration: underline; } a.stub { color: #772233; } a.new, #p-personal a.new { color: #ba0000; } a.new:visited, #p-personal a.new:visited { color: #a55858; } /* Interwiki Styling */ .mw-body a.extiw, .mw-body a.extiw:active { color: #08a500; } .mw-body a.extiw:visited { color: #045b00; } .mw-body a.extiw:active { color: #0cff00; } /* External links */ .mw-body a.external { color: #08a500; } .mw-body a.external:visited { color: #045b00; /* bug 3112 */ } .mw-body a.external:active { color: #0cff00; }