MediaWiki:Common.css: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
#pagehistory li.selected {
#pagehistory li.selected {
color: #b9b7b5 !important;
color: #b9b7b5 !important;
Line 4: Line 5:


a:link {
a:link {
color: rgb(100, 140, 200) !important;
color: rgb(100, 140, 200);
}
}


a:visited {
a:visited {
color: rgb(160, 140, 200) !important;
color: rgb(160, 140, 200);
}
}


a:active {
a:active {
color: rgb(220, 140, 200) !important;
color: rgb(220, 140, 200);
}
}

Revision as of 16:12, 19 June 2024

/* CSS placed here will be applied to all skins */
#pagehistory li.selected {
	color: #b9b7b5 !important;
}	

a:link {
	color: rgb(100, 140, 200);
}

a:visited {
	color: rgb(160, 140, 200);
}

a:active {
	color: rgb(220, 140, 200);
}