MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Jakethesnake (talk | contribs) (Replaced content with "→CSS placed here will be applied to all skins: →--- General look and feel of the site ---: html { background-color: black; }") Tag: Replaced |
Jakethesnake (talk | contribs) No edit summary |
||
Line 3: | Line 3: | ||
/* --- General look and feel of the site --- */ | /* --- General look and feel of the site --- */ | ||
body { | |||
background-color: black; | background-color: black; | ||
} | |||
a { | |||
color: darksalmon; | |||
text-decoration: none; | |||
} | |||
a:hover { | |||
color: aliceblue; | |||
} | } |
Revision as of 07:56, 9 May 2021
/* CSS placed here will be applied to all skins */ /* --- General look and feel of the site --- */ body { background-color: black; } a { color: darksalmon; text-decoration: none; } a:hover { color: aliceblue; }