MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
/* unvisited link */ | /* unvisited link */ | ||
a:link { | a:link { | ||
color: | color: gold; | ||
} | } | ||
Line 17: | Line 17: | ||
/* mouse over link */ | /* mouse over link */ | ||
a:hover { | a:hover { | ||
color: | color: yellow; | ||
} | } | ||
Revision as of 08:13, 26 May 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: gold; } /* visited link */ a:visited { color: gold; } /* mouse over link */ a:hover { color: yellow; } /* selected link */ a:active { color: yellow; }