MediaWiki:Common.css: Difference between revisions

From SCA Heraldry Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:
body {background: yellow}
body {background: yellow}
#mw-page-base {background: green; color: gold}
#mw-page-base {background: green; color: gold}




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


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


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


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

Revision as of 08:02, 1 July 2018

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

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



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

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

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

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