Difference between revisions of "MediaWiki:Common.css"
Markyjoe1990 (talk | contribs) (Replaced content with "→CSS placed here will be applied to all skins: ") |
Black Rose (talk | contribs) |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
| + | |||
| + | /* Link Hover Glow */ | ||
| + | |||
| + | a:hover { | ||
| + | text-shadow: #18e6f1 0 0 5px; | ||
| + | color: #19f9ff !important; | ||
| + | text-decoration:none; | ||
| + | -webkit-transition: all linear 400ms; | ||
| + | -moz-transition: all linear 400ms; | ||
| + | -ms-transition: all linear 400ms; | ||
| + | -o-transition: all linear 400ms; | ||
| + | transition: all linear 400ms; | ||
| + | } | ||
| + | a { | ||
| + | text-decoration:none; | ||
| + | -webkit-transition: all linear 400ms; | ||
| + | -moz-transition: all linear 400ms; | ||
| + | -ms-transition: all linear 400ms; | ||
| + | -o-transition: all linear 400ms; | ||
| + | transition: all linear 400ms; | ||
| + | } | ||
Revision as of 23:42, 15 April 2018
/* CSS placed here will be applied to all skins */
/* Link Hover Glow */
a:hover {
text-shadow: #18e6f1 0 0 5px;
color: #19f9ff !important;
text-decoration:none;
-webkit-transition: all linear 400ms;
-moz-transition: all linear 400ms;
-ms-transition: all linear 400ms;
-o-transition: all linear 400ms;
transition: all linear 400ms;
}
a {
text-decoration:none;
-webkit-transition: all linear 400ms;
-moz-transition: all linear 400ms;
-ms-transition: all linear 400ms;
-o-transition: all linear 400ms;
transition: all linear 400ms;
}