MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(21 intermediate revisions by 2 users 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: gold} | |||
#mw-page-base {background: indigo; color: gold} | |||
/* unvisited link */ | |||
a:link { | |||
color: darkgoldenrod; | |||
} | |||
/* visited link */ | |||
a:visited { | |||
color: goldenrod; | |||
} | |||
/* mouse over link */ | |||
a:hover { | |||
color: yellow; | |||
} | |||
/* selected link */ | |||
a:active { | |||
color: gold; | |||
} |
Latest revision as of 10:03, 2 June 2018
/* CSS placed here will be applied to all skins */ body {background: gold} #mw-page-base {background: indigo; color: gold} /* unvisited link */ a:link { color: darkgoldenrod; } /* visited link */ a:visited { color: goldenrod; } /* mouse over link */ a:hover { color: yellow; } /* selected link */ a:active { color: gold; }