Difference between revisions of "MediaWiki:Common.css"

From Lair Of The Fooker Wiki
Jump to: navigation, search
 
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
#mw-panel {
 
    background-color: #FFE5BF;
 
    border: solid #874E00 1px;
 
    padding-bottom: 15px;
 
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.6)
 
}
 
  
#mw-head {
+
/* standard link colors */
    background-color: #FFE5BF;
+
.mw-body-content a:link { color: #588ab7; } /* normal unvisited links */
    border: solid #874E00 1px;
+
.mw-body-content a:link:visited { color: #588ab7; } /* visited links */
}
+
.mw-body-content a:link:active { color: #aa0000; } /* active links */
.mw-body {
+
.mw-body-content a:link.new { color: #aa0000; } /* new links */
    background-color: #FFE5BF;
+
.mw-body-content a:link.extiw { color: #3366BB; } /* interwiki links */
    border: solid #874E00 1px;
+
.mw-body-content a:link.external { color: #3366BB; } /* external links */
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.6);
+
.mw-body-content a:link.stub { color: #772233; } /* hovered links */
}
 
  
body {
+
a {
background-image:url('http://markyjoe.com/images/bg2.png');
+
    text-decoration: none;
 +
    color: #588ab7;
 +
    background: none;
 
}
 
}
  
#footer {
+
a:visited {
     background-color: #FFE5BF;
+
     color: #588ab7;
    border: solid #874E00 1px;
 
    border-top:0px;
 
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.6);
 
 
}
 
}

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;
}