Experimental "future-proof" version of KNACSS
This commit is contained in:
parent
3fa53f9083
commit
f42ad600be
18 changed files with 3777 additions and 0 deletions
39
future-proof/css-includes/03-tables.css
Normal file
39
future-proof/css-includes/03-tables.css
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue