MediaWiki:Common.css: Difference between revisions

From MI2wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 12: Line 12:
table.chartable tr th:first-child,table.chartable tr td:first-child { border-left: 1px solid #bbb; }
table.chartable tr th:first-child,table.chartable tr td:first-child { border-left: 1px solid #bbb; }
table.chartable tr th { background: #eee; border-top: 1px solid #bbb; text-align: left; }
table.chartable tr th { background: #eee; border-top: 1px solid #bbb; text-align: left; }
table.chartable tr:first-child th:first-child { border-top-left-radius: 10px; }
 
table.chartable tr:first-child th:last-child { border-top-right-radius: 10px; }
table.chartable tr:last-child th:last-child { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
table.chartable tr:last-child td:last-child { border-bottom-right-radius: 10px; }


/* Organization table stuff fixed up by Dan! */
/* Organization table stuff fixed up by Dan! */

Revision as of 20:12, 8 June 2013

/* Original Character Table Stuff */

.CHARa { color: white; background:#865ab7 }
.CHARb { color: black; background:#dbd1f7 }
.seriesa{ color: white; background:#234432 }
.seriesb{ color: black; background:#B0C4DE }

/* Character table stuff fixed up by Dan! */

table.chartable { width:300px; float:right; border-collapse: separate; border-spacing: 0; }
table.chartable tr th,table.chartable tr td { border-right: 1px solid #bbb; border-bottom: 1px solid #bbb; padding: 5px; }
table.chartable tr th:first-child,table.chartable tr td:first-child { border-left: 1px solid #bbb; }
table.chartable tr th { background: #eee; border-top: 1px solid #bbb; text-align: left; }


/* Organization table stuff fixed up by Dan! */

table.orgtable {
        border-spacing:0px; font-size:90%; border-collapse: collapse;
        border: 1px #777777 solid;
	-moz-box-shadow:2px 2px 5px #333;
	-webkit-box-shadow:2px 2px 5px #333;
	box-shadow:2px 2px 5px #333;
}
table.orgtable th {
        padding: 2px;
        border-collapse: collapse; border: 1px #777777 solid;
        color: white; background: #40975f; font-weight: bold;
        text-align:center; vertical-align:text-top;
}
table.orgtable td {
        padding: 2px;
        border-collapse: collapse; border: 1px #777777 solid;
        color: black; background: #B0C4DE;
        vertical-align:text-top;
}

/* Wiki Table */

table.wikitable, table.prettytable {
        margin: 10px 10px 10px 0;
        background: #f9f9f9;
        border: 1px #525252 solid;
        border-collapse: collapse;
}

table.wikitable th, table.wikitable td, table.prettytable th, table.prettytable td {
        border: 1px #777777 solid;
        padding: 2px;
}

table.wikitable th, table.prettytable th {
        background: #f2f2f2;
        text-align: center;
}

table.wikitable caption, table.prettytable caption {
        margin-left: inherit;
        margin-right: inherit;
}

/* TOC (Table of Contents) */
#toc {
	margin:10px 0 10px 0;
	border:1px solid #999
	-moz-border-radius:0 10px 10px 0;
	-webkit-border-top-right-radius:10px;
	-webkit-border-bottom-right-radius 10px;
	border-radius:0 10px 10px 0;
	-moz-box-shadow:1px 1px 5px #303030;
	-webkit-box-shadow:1px 1px 5px #303030;
	box-shadow:1px 1px 5px #303030;
	font-family:Trebuchet MS, Arial, Helvetica, sans-serif;
	background:#F9F9F9 url(http://gubaba.org/mi2/wiki/images/c/cd/Tocline.png) top center repeat-x;

}
#toctitle { margin-bottom:7px; }
span.tocnumber, span.toctext { color:#001E8C; }