Difference between revisions of "MediaWiki:Common.css"
(Created page with "→CSS placed here will be applied to all skins: textarea#wpTextbox1 { font-family: monospace; }") |
|||
Line 3: | Line 3: | ||
textarea#wpTextbox1 { | textarea#wpTextbox1 { | ||
font-family: monospace; | font-family: monospace; | ||
+ | } | ||
+ | |||
+ | a:link { | ||
+ | color: #337ab7 | ||
+ | } | ||
+ | |||
+ | a:visited { | ||
+ | color: #337ab7 | ||
+ | } | ||
+ | |||
+ | a:focus { | ||
+ | color: #23527c | ||
+ | } | ||
+ | |||
+ | a:hover { | ||
+ | color: #23527c | ||
+ | } | ||
+ | |||
+ | a:active { | ||
+ | color: #cc8548 | ||
+ | } | ||
+ | |||
+ | a:visited:focus { | ||
+ | color: #23527c | ||
+ | } | ||
+ | |||
+ | a:visited:hover { | ||
+ | color: #23527c | ||
} | } |
Revision as of 21:44, 29 December 2014
/* CSS placed here will be applied to all skins */
textarea#wpTextbox1 {
font-family: monospace;
}
a:link {
color: #337ab7
}
a:visited {
color: #337ab7
}
a:focus {
color: #23527c
}
a:hover {
color: #23527c
}
a:active {
color: #cc8548
}
a:visited:focus {
color: #23527c
}
a:visited:hover {
color: #23527c
}