MediaWiki:Common.css: Difference between revisions

From Morloch Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 11: Line 11:
a,
a,
.color2 a {
.color2 a {
color: #70b8ff;
color: #752e2e;
}
}
a: hover,
a: hover,
Line 28: Line 28:
.color2 a:visited:hover {
.color2 a:visited:hover {
/* NEW LINKS */
/* NEW LINKS */
color: #772f2f;
color: #752e2e;
text-decoration: none;
text-decoration: none;
text-shadow: #16a92d 0 0 10px;
text-shadow: #bf1515 0 0 8px;
}
}
a.new {
a.new {
Line 40: Line 40:
color: #772f2f!important;
color: #772f2f!important;
text-decoration: none;
text-decoration: none;
text-shadow: #16a92d 0 0 5px !important;
text-shadow: #bf1515 0 0 5px !important;
}
}

Revision as of 23:02, 16 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: #4f2020;
	text-decoration: none;
	text-shadow: #16a92d 0 0 10px;
}
a: visited,
.color2 a:visited {
	color: #4f2020;
	text-decoration: none;
}
a: visited: hover,
.color2 a:visited:hover {
	/* NEW LINKS */
	color: #752e2e;
	text-decoration: none;
	text-shadow: #bf1515 0 0 8px;
}
a.new {
	color: #871611 !important;
}
a.new: hover,
.color2 a.new:hover {
	/* Mists countdown background */
	color: #772f2f!important;
	text-decoration: none;
	text-shadow: #bf1515 0 0 5px !important;
}