Difference between revisions of "MediaWiki:Common.css"

From Lair Of The Fooker Wiki
Jump to: navigation, search
Line 5: Line 5:
 
a:hover {
 
a:hover {
 
         text-shadow: #18e6f1 0 0 5px;
 
         text-shadow: #18e6f1 0 0 5px;
         color: #19f9ff !important;
+
         color: #19eff7 !important;
 
         text-decoration:none;
 
         text-decoration:none;
 
         -webkit-transition: all linear 400ms;
 
         -webkit-transition: all linear 400ms;

Revision as of 23:45, 15 April 2018

/* CSS placed here will be applied to all skins */

/* Link Hover Glow     */
 
a:hover {
        text-shadow: #18e6f1 0 0 5px;
        color: #19eff7 !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;
}