MediaWiki:Common.css: Difference between revisions

From MI2wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 94: Line 94:
span.tocnumber, span.toctext { color:#001E8C; }
span.tocnumber, span.toctext { color:#001E8C; }
   
   
/* Especiales */
 
.caja-info {
border:2px solid #0000ff;
background:#e0ffff url(http://images2.wikia.nocookie.net/__cb20080828184407/es.pokemon/images/3/37/Information_desvanecido.png) no-repeat top right;
color:#000;
padding:.5em 1em;
}
/* Sombras */
/* Sombras */
.sombra {
.sombra {
Line 108: Line 101:
box-shadow:0.1em 0.1em 0.5em #303030;
box-shadow:0.1em 0.1em 0.5em #303030;
}
}
/* Efecto degradado */
.degradado {
height:28px;
background:#ffffff url(http://images3.wikia.nocookie.net/__cb20081112190913/es.pokemon/images/1/12/Degradado.png) 0 0 repeat;
}
.degradado2 {
width:28px;
background:#ffffff url(http://images3.wikia.nocookie.net/__cb20090910124102/es.pokemon/images/b/b9/Degradado_2.png) 0 0 repeat;
}
body.ie6 .degradado, body.ie6 .degradado2 { background-image:none; }

Revision as of 16:12, 30 May 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 {
        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.chartable th {
        padding: 2px;
        border-collapse: collapse; border: 1px #777777 solid;
        color: white; background: #c4a8ff; font-weight: bold;
        text-align:center; vertical-align:text-top;
}
table.chartable td {
        padding: 2px;
        border-collapse: collapse; border: 1px #777777 solid;
        color: black; background: #e8ddff;
        vertical-align:text-top;
}

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

/* wikitable/prettytable class for skinning normal tables (standard wikitable code)*/

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

/**** STUPID ****/


/* Estilos de TOC (tabla de contenidos) */
#toc {
	margin:1em 0 1em 0;
	border:1px solid #999;
	-moz-border-radius:0 1em 1em 0;
	-webkit-border-top-right-radius:1em;
	-webkit-border-bottom-right-radius 1em;
	border-radius:0 1em 1em 0;
	-moz-box-shadow:0.1em 0.1em 0.5em #303030;
	-webkit-box-shadow:0.1em 0.1em 0.5em #303030;
	box-shadow:0.1em 0.1em 0.5em #303030;
	font-family:Trebuchet MS, Arial, Helvetica, sans-serif;
	background:#F9F9F9 url(http://images2.wikia.nocookie.net/__cb20100119202528/es.pokemon/images/c/cd/Tocline.png) top center repeat-x;
}
 
#toctitle { margin-top:-3px; margin-bottom:7px; }
 
span.tocnumber, span.toctext { color:#001E8C; }
 

/* Sombras */
.sombra {
	-moz-box-shadow:0.1em 0.1em 0.5em #303030;
	-webkit-box-shadow:0.1em 0.1em 0.5em #303030;
	box-shadow:0.1em 0.1em 0.5em #303030;
}