MediaWiki:Common.css: Difference between revisions

From Calontiri Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(26 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
body {background: gold}
#mw-page-base {background: indigo; color: gold}


body {background: lavendar}
#mw-page-base {background: purple}


body {font-color: #ff3100}
/* 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;
}

Latest revision as of 11:03, 2 June 2018

/* CSS placed here will be applied to all skins */
 
body {background: gold}
#mw-page-base {background: indigo; 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;
}