Difference between revisions of "MediaWiki:Monobook.css"

From #openttdcoop wiki

Jump to: navigation, search
 
(copy from the openTTD wiki)
Line 1: Line 1:
 
/* edit this file to customize the monobook skin for the entire site */
 
/* edit this file to customize the monobook skin for the entire site */
 +
 +
.unclaimed {background-color: #CC0033;}
 +
.claimed {background-color: #FF6633;}
 +
.wip {background-color: #FFCC33;}
 +
.converted {background-color: #FFFF99;}
 +
.checked {background-color: #339900;}
 +
.checked2 {background-color: #66FF99;}
 +
.done {background-color: #F2F2F2;}
 +
 +
/* '''Table stuff''' */
 +
#bodyContent table {
 +
margin-top: 10px;
 +
margin-bottom: 10px;
 +
border-collapse: collapse;
 +
font-size: 100%;
 +
background: White;
 +
}
 +
 +
#bodyContent td {
 +
border-collapse:collapse;
 +
vertical-align: top;
 +
border: 1px solid #5E5E5E;
 +
background-color: #F2F2F2;
 +
padding: 5px 5px 2px;
 +
//border: 1px solid #767676;
 +
//background-color: White;
 +
//padding: 2px 2px 15px;
 +
}
 +
 +
/* '''box for boxes''' */
 +
#bodyContent .box {
 +
padding: 5px;
 +
border: 1px solid #969696;
 +
color: Black;
 +
background-color: #f9f9f9;
 +
line-height: 1.1em;
 +
}
 +
 +
/* '''warning, red+bold''' */
 +
#bodyContent .warning {
 +
font-weight: bold;
 +
color: #E61313;
 +
}
 +
 +
/* '''Pre box''' */
 +
#bodyContent pre {
 +
padding: 5px;
 +
border: 1px ridge #767676;
 +
color: Black;
 +
background-color: #f9f9f9;
 +
line-height: 1.1em;
 +
}
 +
 +
/* ''' Heading style''' */
 +
#bodyContent h1, h2 {
 +
padding-top: 3em;
 +
}
 +
 +
#bodyContent h3, h4 {
 +
padding-top: 2em;
 +
}
 +
 +
#bodyContent h5, h6 {
 +
padding-top: 1em;
 +
}
 +
 +
/* '''RSS item list''' */
 +
.rsslink { font-size: 10px;  color : #436976; text-decoration: none;}
 +
.rsslink:active {  font-size: 10px; color: #436976; text-decoration: none;}
 +
.rsslink:hover {    font-size: 10px;  color : #436976; text-decoration: none;}
 +
 +
/* '''Style for rss lists''' */
 +
.rsslist {
 +
background-color: #ffffff;
 +
margin: 0;
 +
margin-right: 10px;
 +
padding: 1px;
 +
border: 1px solid #dadac9;
 +
}
 +
 +
.rssitem {
 +
padding: 1px 6px 1px 6px;
 +
border-top: 1px dashed #dadac9;
 +
list-style-type: disc;
 +
}
 +
 +
.rssitem:first-child {
 +
border-top: 0;
 +
}
 +
 +
.rssdate {
 +
color: #999999;
 +
font-style: italic;
 +
}
 +
 +
/* '''Style for rss lists in toolbar''' */
 +
.srsslist {margin: 0px;}
 +
.srssitem { border-bottom: 1px dashed #dadac9; list-style-type:none}
 +
.srssitem:last-child { border-bottom: 0;}

Revision as of 20:27, 6 January 2006

/* edit this file to customize the monobook skin for the entire site */

.unclaimed {background-color: #CC0033;}
.claimed {background-color: #FF6633;}
.wip {background-color: #FFCC33;}
.converted {background-color: #FFFF99;}
.checked {background-color: #339900;}
.checked2 {background-color: #66FF99;}
.done {background-color: #F2F2F2;}

/* '''Table stuff''' */
#bodyContent table {
 margin-top: 10px;
 margin-bottom: 10px;
 border-collapse: collapse;
 font-size: 100%;
 background: White;
}

#bodyContent td {
 border-collapse:collapse;
 vertical-align: top;
 border: 1px solid #5E5E5E;
 background-color: #F2F2F2;
 padding: 5px 5px 2px;
 //border: 1px solid #767676;
 //background-color: White;
 //padding: 2px 2px 15px;
}

/* '''box for boxes''' */
#bodyContent .box {
 padding: 5px;
 border: 1px solid #969696;
 color: Black;
 background-color: #f9f9f9;
 line-height: 1.1em;
}

/* '''warning, red+bold''' */
#bodyContent .warning {
 font-weight: bold;
 color: #E61313;
}

/* '''Pre box''' */
#bodyContent pre {
 padding: 5px;
 border: 1px ridge #767676;
 color: Black;
 background-color: #f9f9f9;
 line-height: 1.1em;
}

/* ''' Heading style''' */
#bodyContent h1, h2 {
 padding-top: 3em; 
}

#bodyContent h3, h4 {
 padding-top: 2em; 
}

#bodyContent h5, h6 {
 padding-top: 1em; 
}

/* '''RSS item list''' */
.rsslink { font-size: 10px;  color : #436976; text-decoration: none;}
.rsslink:active {   font-size: 10px; color: #436976; text-decoration: none;}
.rsslink:hover {    font-size: 10px;  color : #436976; text-decoration: none;}

/* '''Style for rss lists''' */
.rsslist {
 background-color: #ffffff;
 margin: 0;
 margin-right: 10px;
 padding: 1px;
 border: 1px solid #dadac9;
}

.rssitem {
 padding: 1px 6px 1px 6px;
 border-top: 1px dashed #dadac9;
 list-style-type: disc;
}

.rssitem:first-child {
 border-top: 0;
}

.rssdate {
 color: #999999;
 font-style: italic;
}

/* '''Style for rss lists in toolbar''' */
.srsslist {margin: 0px;}
.srssitem { border-bottom: 1px dashed #dadac9; list-style-type:none} 
.srssitem:last-child { border-bottom: 0;}
Powered by MediaWiki