Difference between revisions of "MediaWiki:Common.css"

From Longnecker House
Jump to: navigation, search
Line 5: Line 5:
 
/* unvisited link */
 
/* unvisited link */
 
a:link {
 
a:link {
     color: goldenrod;
+
     color: yellow;
 
}
 
}
  
 
/* visited link */
 
/* visited link */
 
a:visited {
 
a:visited {
     color: yellow;
+
     color: goldenrod;
 
}
 
}
  
 
/* mouse over link */
 
/* mouse over link */
 
a:hover {
 
a:hover {
     color: yellow;
+
     color: white;
 
}
 
}
  

Revision as of 16:23, 3 March 2019

body {background: khaki}
#mw-page-base {background: cadetblue; color: khaki}


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

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

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

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


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