Difference between revisions of "MediaWiki:Common.css"
| Line 11: | Line 11: | ||
a, | a, | ||
.color2 a { | .color2 a { | ||
| − | color: # | + | color: #388aaf; |
} | } | ||
a: hover, | a: hover, | ||
.color2 a:hover { | .color2 a:hover { | ||
/* VISITED LINKS */ | /* VISITED LINKS */ | ||
| − | color: # | + | color: #2081ad; |
text-decoration: none; | text-decoration: none; | ||
text-shadow: #2783ad 0 0 8px; | text-shadow: #2783ad 0 0 8px; | ||
| Line 22: | Line 22: | ||
a: visited, | a: visited, | ||
.color2 a:visited { | .color2 a:visited { | ||
| − | color: # | + | color: #2081ad; |
text-decoration: none; | text-decoration: none; | ||
} | } | ||
| Line 28: | Line 28: | ||
.color2 a:visited:hover { | .color2 a:visited:hover { | ||
/* NEW LINKS */ | /* NEW LINKS */ | ||
| − | color: # | + | color: #388aaf; |
text-decoration: none; | text-decoration: none; | ||
text-shadow: #2783ad 0 0 8px; | text-shadow: #2783ad 0 0 8px; | ||
| Line 37: | Line 37: | ||
a.new: hover, | a.new: hover, | ||
.color2 a.new:hover { | .color2 a.new:hover { | ||
| − | color: # | + | color: #388aaf!important; |
text-decoration: none; | text-decoration: none; | ||
text-shadow: #2783ad 0 0 8px !important; | text-shadow: #2783ad 0 0 8px !important; | ||
} | } | ||
Revision as of 00:58, 22 September 2017
/* CSS placed here will be applied to all skins */
.wrap {
white-space: pre-wrap;
}
/*** LINK HOVERING ***/
/****************************/
/*UNVISITED LINKS */
a,
.color2 a {
color: #388aaf;
}
a: hover,
.color2 a:hover {
/* VISITED LINKS */
color: #2081ad;
text-decoration: none;
text-shadow: #2783ad 0 0 8px;
}
a: visited,
.color2 a:visited {
color: #2081ad;
text-decoration: none;
}
a: visited: hover,
.color2 a:visited:hover {
/* NEW LINKS */
color: #388aaf;
text-decoration: none;
text-shadow: #2783ad 0 0 8px;
}
a.new {
color: #871611 !important;
}
a.new: hover,
.color2 a.new:hover {
color: #388aaf!important;
text-decoration: none;
text-shadow: #2783ad 0 0 8px !important;
}