Experimental "future-proof" version of KNACSS

This commit is contained in:
Raphael Goetter 2014-05-22 20:36:58 +02:00
parent 3fa53f9083
commit f42ad600be
18 changed files with 3777 additions and 0 deletions

View file

@ -0,0 +1,39 @@
/* ----------------------------- */
/* ==tables */
/* ----------------------------- */
table,
.table {
width: 100%;
max-width : 100%;
table-layout: fixed;
border-collapse: collapse;
vertical-align: top;
border: 1px solid #ccc;
}
.table {
display: table;
}
table#recaptcha_table,
table.table-auto {
table-layout:auto;
}
caption {
padding: var(--small-value);
color: #555;
font-style: italic;
}
td,
th {
padding: 0.3em 0.8em;
border: 1px #aaa dotted;
vertical-align: top;
min-width: var(--medium-value);
cursor: default;
text-align: left;
}