Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
+ | |||
P { text-indent: 2em } | P { text-indent: 2em } | ||
Line 7: | Line 8: | ||
a.new:visited, #ca-talk > span > a { | a.new:visited, #ca-talk > span > a { | ||
color: red !important; | color: red !important; | ||
+ | } | ||
+ | |||
+ | /* Highlight linked elements (such as clicked references) in blue */ | ||
+ | body.action-info .mw-body-content :target, | ||
+ | .citation:target { | ||
+ | background-color: #def; /* Fallback */ | ||
+ | background-color: rgba(0, 127, 255, 0.133); | ||
} | } |
Revision as of 17:47, 2 April 2021
/* CSS placed here will be applied to all skins */ P { text-indent: 2em } a.new:link, #ca-talk > span > a { color: #cc2200 !important; } a.new:visited, #ca-talk > span > a { color: red !important; } /* Highlight linked elements (such as clicked references) in blue */ body.action-info .mw-body-content :target, .citation:target { background-color: #def; /* Fallback */ background-color: rgba(0, 127, 255, 0.133); }