MediaWiki:Common.css: Difference between revisions

From SCA Heraldry Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 8: Line 8:
/* unvisited link */
/* unvisited link */
a:link {
a:link {
     color: darkgoldenrod;
     color: goldenrod;
}
}



Latest revision as of 08:10, 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: goldenrod;
}

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

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

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