MediaWiki:Common.css

From Morloch Wiki
Revision as of 02:21, 22 September 2017 by Rewen (talk | contribs)
Jump to: navigation, search
/* CSS placed here will be applied to all skins */

.wrap {
  white-space: pre-wrap;
}
 
/*** LINK HOVERING ***/
/****************************/
/*UNVISITED LINKS */
 
a,
.color2 a {
	color: #388aaf;
}
a: hover,
.color2 a:hover {
	/* VISITED LINKS */
	color: #2081ad;
	text-decoration: none;
	text-shadow: #2dbdff 0 0 8px;
}
a: visited,
.color2 a:visited {
	color: #2081ad;
	text-decoration: none;
}
a: visited: hover,
.color2 a:visited:hover {
	/* NEW LINKS */
	color: #388aaf;
	text-decoration: none;
	text-shadow: #2dbdff 0 0 8px;
}
a.new {
	color: #871611 !important;
}
a.new: hover,
.color2 a.new:hover {
	color: #388aaf!important;
	text-decoration: none;
	text-shadow: #2dbdff 0 0 8px !important;
}