Difference between revisions of "MediaWiki:Common.css"

From Wulfgard Wiki
Jump to: navigation, search
Line 17: Line 17:
 
color: #0cff00;
 
color: #0cff00;
 
}
 
}
.mw-body a:link { color: #08a500; } /* normal unvisited links */
+
a:interwiki {
.mw-body a:link:visited { color: #045b00; } /* visited links */
+
color: #08a500;
.mw-body a:link:active { color: #0cff00; } /* active links */
+
text-decoration: none;
 
+
}
.mw-body a:link.interwiki { color: #08a500; } /* interwiki links */
+
a:external {
.mw-body a:link.external { color: #08a500; } /* external links */
+
color: #08a500;
.mw-body a:link.stub { color: #08a500; } /* hovered links */
+
text-decoration: none;
+
}
.mw-body a:link {color: #08a500}
 
.mw-body a:visited {color: #045b00}
 
.mw-body a:hover {color: #08a500}
 
.mw-body a:active {color: #0cff00}
 

Revision as of 02:51, 14 May 2014

/* CSS placed here will be applied to all skins */

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;
}
a:interwiki {
	color: #08a500;
	text-decoration: none;
}
a:external {
	color: #08a500;
	text-decoration: none;
}