MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with "→CSS placed here will be applied to all skins: body {background: gold #mw-page-base {background: green; color: gold} →unvisited link: a:link { color: yellow; }...") |
No edit summary |
||
(4 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 */ | ||
body {background: | body {background: yellow} | ||
#mw-page-base {background: green; color: gold} | #mw-page-base {background: green; color: gold} | ||
/* unvisited link */ | /* unvisited link */ | ||
a:link { | a:link { | ||
color: | color: goldenrod; | ||
} | } | ||
/* visited link */ | /* visited link */ | ||
a:visited { | a:visited { | ||
color: | color: goldenrod; | ||
} | } | ||
/* mouse over link */ | /* mouse over link */ | ||
a:hover { | a:hover { | ||
color: | color: yellow; | ||
} | } | ||
/* selected link */ | /* selected link */ | ||
a:active { | a:active { | ||
color: | color: gold; | ||
} | } |
Latest revision as of 07:10, 1 July 2018
/* CSS placed here will be applied to all skins */ body {background: yellow} #mw-page-base {background: green; color: gold} /* unvisited link */ a:link { color: goldenrod; } /* visited link */ a:visited { color: goldenrod; } /* mouse over link */ a:hover { color: yellow; } /* selected link */ a:active { color: gold; }