Maiko Furubayashi/Chiba2.css: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
(New page: →‎wikitable/prettytable class for skinning normal tables: table.wikitable, table.prettytable { margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border...)
 
No edit summary
 
Line 1: Line 1:
<pre>
/* wikitable/prettytable class for skinning normal tables */
/* wikitable/prettytable class for skinning normal tables */
table.wikitable,
table.wikitable,
Line 21: Line 22:
     font-weight: bold;
     font-weight: bold;
}
}
</pre>

Latest revision as of 07:33, 1 March 2009

/* wikitable/prettytable class for skinning normal tables */
table.wikitable,
table.prettytable {
    margin: 1em 1em 1em 0;
    background: #f9f9f9;
    border: 1px #aaa solid;
    border-collapse: collapse;
}
.wikitable th, .wikitable td,
.prettytable th, .prettytable td {
    border: 1px #aaa solid;
    padding: 0.2em;
}
.wikitable th,
.prettytable th {
    background: #f2f2f2;
    text-align: center;
}
.wikitable caption,
.prettytable caption {
    font-weight: bold;
}