MediaWiki:Common.css: Difference between revisions

From Slavic Interest Group
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 2: Line 2:


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




/* unvisited link */
/* unvisited link */
a:link {
a:link {
     color: yellow;
     color: white;
}
}


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



Revision as of 19:25, 6 May 2018

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

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


/* unvisited link */
a:link {
    color: white;
}

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

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

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