Difference between revisions of "MediaWiki:Common.css"

From Slavic Interest Group
Jump to: navigation, 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; }...")
 
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;
}