MediaWiki:Common.css
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */
.wrap {
white-space: pre-wrap;
}
/*** LINK HOVERING ***/
/****************************/
/*UNVISITED LINKS */
a,
.color2 a {
color: #752e2e;
}
a: hover,
.color2 a:hover {
/* VISITED LINKS */
color: #132d3f;
text-decoration: none;
text-shadow: #bababa 0 0 10px;
}
a: visited,
.color2 a:visited {
color: #18384f;
text-decoration: none;
}
a: visited: hover,
.color2 a:visited:hover {
/* NEW LINKS */
color: #204b6b;
text-decoration: none;
text-shadow: #bababa 0 0 8px;
}
a.new {
color: #871611 !important;
}
a.new: hover,
.color2 a.new:hover {
color: #194668!important;
text-decoration: none;
text-shadow: #bababa 0 0 5px !important;
}