Difference between revisions of "MediaWiki:Common.css"

From The Coppermind
Jump to navigation Jump to search
(+10px border radius classes)
(moving .infobox curvy things all to .tl/.tr/.bl/.br)
Line 3: Line 3:
border: 1px solid;
border: 1px solid;
margin-left:.5em;
margin-left:.5em;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-icab-border-radius: 10px;
-o-border-radius: 10px;
border-spacing:0;
border-spacing:0;

}
}


Line 17: Line 10:
.infobox td, .infobox th { padding:4px; }
.infobox td, .infobox th { padding:4px; }


.portlet h5 {
.portlet h5 { color: white; }
color: white;
}


.tl { border-top-left-radius:10px; -moz-border-radius-topleft: 10px; }
.tl { border-top-left-radius:10px; -moz-border-radius-topleft: 10px; }

Revision as of 12:41, 16 February 2011

/* CSS placed here will be applied to all skins */
table.infobox{
	border: 1px solid;
	margin-left:.5em;
	border-spacing:0;
}

.infobox th { background-color:silver; }
.infobox th.title { color:white; background-color:black; }
.infobox td, .infobox th { padding:4px; }

.portlet h5 { color: white; }

.tl { border-top-left-radius:10px; -moz-border-radius-topleft: 10px; }
.tr { border-top-right-radius:10px; -moz-border-radius-topright: 10px; }
.bl { border-bottom-left-radius:10px; -moz-border-radius-bottomleft: 10px; }
.br { border-bottom-right-radius:10px; -moz-border-radius-bottomright: 10px; }