Difference between revisions of "MediaWiki:Common.css"
From DiceRoller Documentation
m |
|||
Line 8: | Line 8: | ||
/* make links more obvious on greystuff */ | /* make links more obvious on greystuff */ | ||
.skin-greystuff #mw-content-text a { | .skin-greystuff #mw-content-text a { | ||
− | color: # | + | color: #0000ff; |
− | |||
} | } | ||
.skin-greystuff #mw-content-text a.new { | .skin-greystuff #mw-content-text a.new { | ||
− | color: # | + | color: #ff0000; |
− | + | } | |
+ | |||
+ | .skin-greystuff #mw-content-text a.external { | ||
+ | color: #7df9ff; | ||
} | } | ||
.skin-greystuff #mw-content-text a:visited { | .skin-greystuff #mw-content-text a:visited { | ||
− | color: # | + | color: #8f00ff; |
− | |||
} | } | ||
.skin-greystuff #mw-content-text a.new:visited { | .skin-greystuff #mw-content-text a.new:visited { | ||
− | color: # | + | color: #800000; |
− | + | } | |
+ | |||
+ | .skin-greystuff #mw-content-text a.external:visited { | ||
+ | color: #ccccff; | ||
} | } | ||
Revision as of 22:29, 7 April 2017
/* CSS placed here will be applied to all skins */
.shaded {
background-color: #f5f5f5;
padding-left: 3px;
padding-right: 3px;
}
/* make links more obvious on greystuff */
.skin-greystuff #mw-content-text a {
color: #0000ff;
}
.skin-greystuff #mw-content-text a.new {
color: #ff0000;
}
.skin-greystuff #mw-content-text a.external {
color: #7df9ff;
}
.skin-greystuff #mw-content-text a:visited {
color: #8f00ff;
}
.skin-greystuff #mw-content-text a.new:visited {
color: #800000;
}
.skin-greystuff #mw-content-text a.external:visited {
color: #ccccff;
}
.skin-greystuff #mw-content-text a:hover {
text-decoration: underline;
}