Jump to content

MediaWiki:Common.css: Difference between revisions

From LabVIEW Wiki
Added CSS Recommended by Adam Rofer
 
No edit summary
Line 1: Line 1:
/** CSS placed here will be applied to all skins */
<nowiki>/** CSS placed here will be applied to all skins */


/* Infobox template style */
/* Infobox template style */
Line 32: Line 32:
border: 0;
border: 0;
}
}
</nowiki>

Revision as of 04:49, 16 March 2007

<nowiki>/** CSS placed here will be applied to all skins */

/* Infobox template style */

.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;
}
</nowiki>