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 |
||
| (4 intermediate revisions by the same user not shown) | |||
| 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; | |||
text-decoration:underline; | |||
} | |||
a:visited { | |||
// color:#00FF00; | |||
text-decoration:underline; | |||
} | |||
a:hover { | |||
// color:#FF00FF; | |||
text-decoration:underline; | |||
} | |||
a:active { | |||
// color:#0000FF; | |||
text-decoration:underline; | |||
} | |||