Difference between revisions of "MediaWiki:Common.css"

From Delaware DOT Projectwise User Wiki
Jump to navigation Jump to search
Line 5: Line 5:
 
/* A link that has not been visited */
 
/* A link that has not been visited */
 
a:link {
 
a:link {
     color: blue;
+
     color: red;
 
}
 
}
 
/* A link that has been visited */
 
/* A link that has been visited */

Revision as of 00:05, 8 December 2020

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

/* CSS for Links -----------------------------------------*/

/* A link that has not been visited */
a:link {
    color: red;
}
/* A link that has been visited */
a:visited {
    color: blue;
}
/* A link that is hovered on */
a:hover {
    color: red;
}
/* A link that is selected */
a:active {
    color: green;
}

/* -----------------------------------------------------*/