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: light gray;
+
     color: gray;
 
}
 
}
  
Line 17: Line 17:
 
/* mouse over link */
 
/* mouse over link */
 
a:hover {
 
a:hover {
     color: light gray;
+
     color: gray;
 
}
 
}
  

Latest revision as of 08:34, 19 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: gray;
}

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

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

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