Difference between revisions of "MediaWiki:Common.css"

From Australis Ultima 30k
Jump to: navigation, search
m
m
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
 +
/* Links */
 
a {
 
a {
 
text-decoration: none;
 
text-decoration: none;
Line 13: Line 14:
 
a:hover, a:focus {
 
a:hover, a:focus {
 
text-decoration: underline;
 
text-decoration: underline;
 +
}
 +
a.stub {
 +
color: #772233;
 +
}
 +
a.new, #p-personal a.new {
 +
color: #ba0000;
 +
}
 +
a.new:visited, #p-personal a.new:visited {
 +
color: #a55858;
 +
}
 +
/* Interwiki Styling */
 +
.mw-body a.extiw,
 +
.mw-body a.extiw:active {
 +
color: #E6E6E6;
 +
}
 +
.mw-body a.extiw:visited {
 +
color: #636;
 +
}
 +
.mw-body a.extiw:active {
 +
color: #b63;
 +
}
 +
 +
/* External links */
 +
.mw-body a.external {
 +
color: #E6E6E6;
 +
}
 +
.mw-body a.external:visited {
 +
color: #636; /* bug 3112 */
 +
}
 +
.mw-body a.external:active {
 +
color: #b63;
 
}
 
}

Revision as of 02:27, 20 August 2014

/* CSS placed here will be applied to all skins */
/* Links */
a {
	text-decoration: none;
	color: #E6E6E6;
	background: none;
}
a:visited {
	color: #CFCFCF;
}
a:active {
	color: #E6E6E6;
}
a:hover, a:focus {
	text-decoration: underline;
}
a.stub {
	color: #772233;
}
a.new, #p-personal a.new {
	color: #ba0000;
}
a.new:visited, #p-personal a.new:visited {
	color: #a55858;
}
/* Interwiki Styling */
.mw-body a.extiw,
.mw-body a.extiw:active {
	color: #E6E6E6;
}
.mw-body a.extiw:visited {
	color: #636;
}
.mw-body a.extiw:active {
	color: #b63;
}
 
/* External links */
.mw-body a.external {
	color: #E6E6E6;
}
.mw-body a.external:visited {
	color: #636; /* bug 3112 */
}
.mw-body a.external:active {
	color: #b63;
}