MediaWiki:Common.css: Difference between revisions

From Slavic Interest Group
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 7: Line 7:
/* unvisited link */
/* unvisited link */
a:link {
a:link {
     color: white;
     color: gray;
}
}


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