MediaWiki:Common.css: Difference between revisions

From Slavic Interest Group
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: red; color: gold} →‎unvisited link: a:link { color: yellow; }...")
 
No edit summary
Line 3: Line 3:


body {background: gold}
body {background: gold}
#mw-page-base {background: red; color: gold}
#mw-page-base {background: crimson; color: gold}





Revision as of 11:28, 6 May 2018

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


body {background: gold}
#mw-page-base {background: crimson; 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;
}