Difference between revisions of "MediaWiki:Common.css"
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: | + | color: blue; |
} | } | ||
/* A link that has been visited */ | /* A link that has been visited */ | ||
Revision as of 00:10, 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: blue;
}
/* 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;
}
/* -----------------------------------------------------*/