MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "→CSS placed here will be applied to all skins: * {color:green}" |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
a:link { | |||
color:#FF0000; | |||
background-color:#B2FF99; | |||
text-decoration:underline; | |||
} | |||
a:visited { | |||
color:#00FF00; | |||
background-color:#FFFF85; | |||
text-decoration:underline; | |||
} | |||
a:hover { | |||
color:#FF00FF; | |||
background-color:#FF704D; | |||
text-decoration:underline; | |||
} | |||
a:active { | |||
color:#0000FF; | |||
background-color:#FF704D; | |||
text-decoration:underline; | |||
} | |||
Revision as of 15:06, 5 July 2012
/* CSS placed here will be applied to all skins */
a:link {
color:#FF0000;
background-color:#B2FF99;
text-decoration:underline;
}
a:visited {
color:#00FF00;
background-color:#FFFF85;
text-decoration:underline;
}
a:hover {
color:#FF00FF;
background-color:#FF704D;
text-decoration:underline;
}
a:active {
color:#0000FF;
background-color:#FF704D;
text-decoration:underline;
}