Difference between revisions of "MediaWiki:Common.css"
From DiceRoller Documentation
(Created page with "→CSS placed here will be applied to all skins: .shaded { background-color: #ccc; }") |
|||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
.shaded { background-color: #ccc; } | .shaded { background-color: #ccc; } | ||
| + | |||
| + | /* make links more obvious on greystuff */ | ||
| + | .skin-greystuff #mw-content-text a { | ||
| + | color: #00c; | ||
| + | } | ||
| + | |||
| + | .skin-greystuff #mw-content-text a.new { | ||
| + | color: #c00; | ||
| + | } | ||
| + | |||
| + | .skin-greystuff #mw-content-text a:visited { | ||
| + | color: #005; | ||
| + | } | ||
| + | |||
| + | .skin-greystuff #mw-content-text a.new:visited { | ||
| + | color: #500; | ||
| + | } | ||
| + | |||
| + | .skin-greystuff #mw-content-text a:hover { | ||
| + | text-decoration: underline; | ||
| + | } | ||
Revision as of 22:13, 7 April 2017
/* CSS placed here will be applied to all skins */
.shaded { background-color: #ccc; }
/* make links more obvious on greystuff */
.skin-greystuff #mw-content-text a {
color: #00c;
}
.skin-greystuff #mw-content-text a.new {
color: #c00;
}
.skin-greystuff #mw-content-text a:visited {
color: #005;
}
.skin-greystuff #mw-content-text a.new:visited {
color: #500;
}
.skin-greystuff #mw-content-text a:hover {
text-decoration: underline;
}