Difference between revisions of "MediaWiki:Common.css"

From University Innovation Fellows
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: <pre id="line1"><span>table.excel { border-style:solid; border-width:1; border-collapse:collapse; font-family:sans-serif...")
 
Line 2: Line 2:
 
<pre id="line1"><span>table.excel {
 
<pre id="line1"><span>table.excel {
 
border-style:solid;
 
border-style:solid;
border-width:1;
+
border-width:1px;
 
border-collapse:collapse;
 
border-collapse:collapse;
 
font-family:sans-serif;
 
font-family:sans-serif;
Line 10: Line 10:
 
background:#222222;
 
background:#222222;
 
border-style:solid;
 
border-style:solid;
border-width:1;
+
border-width:1px;
 
text-align: center;
 
text-align: center;
 
vertical-align:bottom;
 
vertical-align:bottom;

Revision as of 13:38, 25 September 2013

/* CSS placed here will be applied to all skins */
<pre id="line1"><span>table.excel {
	border-style:solid;
	border-width:1px;
	border-collapse:collapse;
	font-family:sans-serif;
	font-size:12px;
}
table.excel thead th, table.excel tbody th {
	background:#222222;
	border-style:solid;
	border-width:1px;
	text-align: center;
	vertical-align:bottom;
}
table.excel tbody th {
	text-align:center;
	width:20px;
}
table.excel tbody td {
	vertical-align:bottom;
}
table.excel tbody td {
    padding: 0 3px;
	border: 1px solid #222222;
}</span></pre>