Welcome to the TWC Wiki! You are not logged in. Please log in to the Wiki to vote in polls, change skin preferences, or edit pages. See HERE for details of how to LOG IN.

Difference between revisions of "MediaWiki:Common.css"

From TWC Wiki
Jump to navigationJump to search
(Don't indent for highest-level section)
(A little more indentation)
Line 5: Line 5:
 
div.section div.section {
 
div.section div.section {
 
     /* Indent, but not for the highest-level section */
 
     /* Indent, but not for the highest-level section */
     margin-left: 1em;
+
     margin-left: 1.5em;
 
}
 
}
 
   
 
   

Revision as of 20:36, 3 July 2007

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

/* Random stuff */

div.section div.section {
    /* Indent, but not for the highest-level section */
    margin-left: 1.5em;
}
 
/* Front page */

body.page-Main_Page h1.firstHeading {
    display: none;
}

.frontpage-wikinews, .frontpage-generalmodding, .frontpage-m2tw {
    border: 2px solid grey;
    padding: .4em .9em .9em;
    color: black;
    vertical-align: top;
}

.frontpage-wikinews {
    width: 25%;
    background-color: #cff;
}

.frontpage-generalmodding {
    background-color: #ffc;
}

.frontpage-m2tw {
    width: 65%;
    background-color: #ffebcd;
}

/* Infobox template style stolen from Wikipedia */
 
.infobox {
    border: 1px solid #aaa;
    background-color: #f9f9f9;
    color: black;
    margin-bottom: 0.5em;
    margin-left: 1em;
    padding: 0.2em;
    float: right;
    clear: right;
}
.infobox td,
.infobox th {
    vertical-align: top;
}
.infobox caption {
    font-size: larger;
    margin-left: inherit;
}
.infobox.bordered {
    border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
    border: 1px solid #aaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
    border: 0;
}
 
/* styles for bordered infobox with merged rows */
.infobox.bordered .mergedtoprow td,
.infobox.bordered .mergedtoprow th {
    border: 0;
    border-top: 1px solid #aaa;
    border-right: 1px solid #aaa;
}
 
.infobox.bordered .mergedrow td,
.infobox.bordered .mergedrow th {
    border: 0;
    border-right: 1px solid #aaa;
}
 
/* End infobox styles */