Difference between revisions of "MediaWiki:Common.css"

From Slavic Interest Group
Jump to: navigation, search
Line 7: Line 7:
 
/* unvisited link */
 
/* unvisited link */
 
a:link {
 
a:link {
     color: white;
+
     color: light gray;
 
}
 
}
  
Line 17: Line 17:
 
/* mouse over link */
 
/* mouse over link */
 
a:hover {
 
a:hover {
     color: white;
+
     color: light gray;
 
}
 
}
  

Revision as of 19:48, 18 May 2018

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

body {background: #fffff0}
#mw-page-base {background: #c20606; color: gold}


/* unvisited link */
a:link {
    color: light gray;
}

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

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

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