Difference between revisions of "MediaWiki:Common.css"

From Medieval Dogs
Jump to: navigation, search
(Created page with "CSS placed here will be applied to all skins: body {background: tan} #mw-page-base {background: brown; color: gold} unvisited link: a:link { color: yellow; }...")
(No difference)

Revision as of 11:47, 6 May 2018

/* CSS placed here will be applied to all skins */

body {background: tan}
#mw-page-base {background: brown; color: gold}


/* unvisited link */
a:link {
    color: yellow;
}

/* visited link */
a:visited {
    color: gold;
}

/* mouse over link */
a:hover {
    color: white;
}

/* selected link */
a:active {
    color: yellow;
}