Difference between revisions of "MediaWiki:Common.css"

From Morloch Wiki
Jump to: navigation, search
Line 16: Line 16:
 
.color2 a:hover {
 
.color2 a:hover {
 
/* VISITED LINKS */
 
/* VISITED LINKS */
color: #4f2020;
+
color: #132d3f;
 
text-decoration: none;
 
text-decoration: none;
 
text-shadow: #d81111 0 0 10px;
 
text-shadow: #d81111 0 0 10px;
Line 22: Line 22:
 
a: visited,
 
a: visited,
 
.color2 a:visited {
 
.color2 a:visited {
color: #995252;
+
color: #18384f;
 
text-decoration: none;
 
text-decoration: none;
 
}
 
}
Line 28: Line 28:
 
.color2 a:visited:hover {
 
.color2 a:visited:hover {
 
/* NEW LINKS */
 
/* NEW LINKS */
color: #752e2e;
+
color: #204b6b;
 
text-decoration: none;
 
text-decoration: none;
 
text-shadow: #d81111 0 0 8px;
 
text-shadow: #d81111 0 0 8px;

Revision as of 00:53, 22 September 2017

/* 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: #d81111 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: #d81111 0 0 8px;
}
a.new {
	color: #871611 !important;
}
a.new: hover,
.color2 a.new:hover {
	color: #772f2f!important;
	text-decoration: none;
	text-shadow: #d81111 0 0 5px !important;
}