[Main Page] Main Page | Recent changes | View source | Page history

Printable version | Disclaimers | Privacy policy | Latest revision

Not logged in
Log in | Help
 

MediaWiki:Common.css

(Difference between revisions)

(Created page with "- CSS placed here will be applied to all skins: #column-content { width: 100%; float: right; margin: 0 0 .6em -12.2em; padding: 0; } #conte...")
 
Line 22: Line 22:
 
         border-right: none;
 
         border-right: none;
 
         line-height: 1.5em;
 
         line-height: 1.5em;
 +
}
 +
 +
body {
 +
        font: x-small sans-serif;
 +
        background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat;
 +
        color: black;
 +
        margin: 0;
 +
        padding: 0;
 +
}
 +
 +
/* scale back up to a sane default */
 +
#globalWrapper {
 +
        font-size: 127%;
 +
        width: 100%;
 +
        margin: 0;
 +
        padding: 0;
 +
}
 +
 +
/* general styles */
 +
 +
table {
 +
        font-size: 100%;
 +
        color: black;
 +
        /* we don't want the bottom borders of <h2>s to be visible through
 +
          floated tables */
 +
        background-color: white;
 +
}
 +
fieldset table {
 +
        /* but keep table layouts in forms clean... */
 +
        background: none;
 +
}
 +
a {
 +
        text-decoration: none;
 +
        color: #002bb8;
 +
        background: none;
 +
}
 +
a:visited {
 +
        color: #5a3696;
 +
}
 +
a:active {
 +
        color: #faa700;
 +
}
 +
a:hover {
 +
        text-decoration: underline;
 +
}
 +
a.stub {
 +
        color: #772233;
 +
}
 +
a.new, #p-personal a.new {
 +
        color: #ba0000;
 +
}
 +
a.new:visited, #p-personal a.new:visited {
 +
        color: #a55858;
 
}
 
}

Revision as of 12:24, 3 February 2014

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

#column-content {
        width: 100%;
        float: right;
        margin: 0 0 .6em -12.2em;
        padding: 0;
}
#content {
        margin: 2.8em 0 0 12.2em;
        padding: 0 1em 1em 1em;
        position: relative;
        z-index: 2;
}
#column-one {
        padding-top: 160px;
}
#content {
        background: white;
        color: black;
        border: 1px solid #aaa;
        border-right: none;
        line-height: 1.5em;
}

body {
        font: x-small sans-serif;
        background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat;
        color: black;
        margin: 0;
        padding: 0;
}

/* scale back up to a sane default */
#globalWrapper {
        font-size: 127%;
        width: 100%;
        margin: 0;
        padding: 0;
}

/* general styles */

table {
        font-size: 100%;
        color: black;
        /* we don't want the bottom borders of <h2>s to be visible through
           floated tables */
        background-color: white;
}
fieldset table {
        /* but keep table layouts in forms clean... */
        background: none;
}
a {
        text-decoration: none;
        color: #002bb8;
        background: none;
}
a:visited {
        color: #5a3696;
}
a:active {
        color: #faa700;
}
a:hover {
        text-decoration: underline;
}
a.stub {
        color: #772233;
}
a.new, #p-personal a.new {
        color: #ba0000;
}
a.new:visited, #p-personal a.new:visited {
        color: #a55858;
}