Difference between revisions of "MediaWiki:Common.css"

From Lair Of The Fooker Wiki
Jump to: navigation, search
 
(6 intermediate revisions by the same user not shown)
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    */
+
/* standard link colors */
+
.mw-body-content a:link { color: #588ab7; } /* normal unvisited links */
a:hover {
+
.mw-body-content a:link:visited { color: #588ab7; } /* visited links */
        text-shadow: #18e6f1 0 0 5px;
+
.mw-body-content a:link:active { color: #aa0000; } /* active links */
        color: #19eff7 !important;
+
.mw-body-content a:link.new { color: #aa0000; } /* new links */
        text-decoration:none;
+
.mw-body-content a:link.extiw { color: #3366BB; } /* interwiki links */
        -webkit-transition: all linear 400ms;
+
.mw-body-content a:link.external { color: #3366BB; } /* external links */
        -moz-transition: all linear 400ms;
+
.mw-body-content a:link.stub { color: #772233; } /* hovered links */
        -ms-transition: all linear 400ms;
+
 
        -o-transition: all linear 400ms;
+
a {
        transition: all linear 400ms;
+
    text-decoration: none;
 +
    color: #588ab7;
 +
    background: none;
 
}
 
}
a {
+
 
        text-decoration:none;
+
a:visited {
        -webkit-transition: all linear 400ms;
+
    color: #588ab7;
        -moz-transition: all linear 400ms;
 
        -ms-transition: all linear 400ms;
 
        -o-transition: all linear 400ms;
 
        transition: all linear 400ms;
 
 
}
 
}

Latest revision as of 02:37, 19 April 2018

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

/* standard link colors */
.mw-body-content a:link { color: #588ab7; } /* normal unvisited links */
.mw-body-content a:link:visited { color: #588ab7; } /* visited links */
.mw-body-content a:link:active { color: #aa0000; } /* active links */
.mw-body-content a:link.new { color: #aa0000; } /* new links */
.mw-body-content a:link.extiw { color: #3366BB; } /* interwiki links */
.mw-body-content a:link.external { color: #3366BB; } /* external links */
.mw-body-content a:link.stub { color: #772233; } /* hovered links */

a {
    text-decoration: none;
    color: #588ab7;
    background: none;
}

a:visited {
    color: #588ab7;
}