Difference between revisions of "MediaWiki:Vector.css"

From Wulfgard Wiki
Jump to: navigation, search
(Created page with "CSS placed here will affect users of the Vector skin: body { background-color: #dcd6b3; }")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
/* CSS placed here will affect users of the Vector skin */
 
/* CSS placed here will affect users of the Vector skin */
  
body {
+
a:link {
background-color: #dcd6b3;
+
color: #08a500;
 +
text-decoration: none;
 +
}
 +
a:visited {
 +
text-decoration: none;
 +
color: #045b00;
 +
}
 +
a:hover {
 +
text-decoration: underline;
 +
color: #08a500;
 +
}
 +
a:active {
 +
text-decoration: none;
 +
color: #0cff00;
 
}
 
}

Latest revision as of 23:59, 13 May 2014

/* CSS placed here will affect users of the Vector skin */

a:link {
	color: #08a500;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #045b00;
}
a:hover {
	text-decoration: underline;
	color: #08a500;
}
a:active {
	text-decoration: none;
	color: #0cff00;
}