KNACSS/css/tables.css

78 lines
1.3 KiB
CSS
Raw Normal View History

2013-08-20 01:34:28 +02:00
/* -----------------------------
tables
----------------------------- */
2013-03-31 10:19:51 +02:00
table,
.table {
2013-08-20 01:34:28 +02:00
max-width : 100%;
table-layout: fixed;
border-collapse: collapse;
vertical-align: top;
2013-03-31 10:19:51 +02:00
}
table {
2013-08-20 01:34:28 +02:00
width: 100%;
2013-03-31 10:19:51 +02:00
}
.table {
2013-08-20 01:34:28 +02:00
display: table;
2013-03-31 10:19:51 +02:00
}
2013-07-11 19:15:02 +02:00
table#recaptcha_table,
table.table-auto {
2013-08-20 01:34:28 +02:00
table-layout:auto;
2013-07-11 19:15:02 +02:00
}
2013-03-31 10:19:51 +02:00
caption {
2013-08-20 01:34:28 +02:00
padding: 10px;
color: #555;
font-style: italic;
2013-03-31 10:19:51 +02:00
}
2013-08-20 01:34:28 +02:00
table {
border: 1px solid #ccc;
2013-03-31 10:19:51 +02:00
}
tr > * + * {
2013-08-20 01:34:28 +02:00
border-left: 1px solid #ccc;
2013-03-31 10:19:51 +02:00
}
th,
td {
2013-08-20 01:34:28 +02:00
padding: .3em .8em;
text-align: left;
border-bottom: 1px solid #ccc;
2013-03-31 10:19:51 +02:00
}
td {
2013-08-20 01:34:28 +02:00
color: #333;
2013-03-31 10:19:51 +02:00
}
/* alternate tables */
.alternate { border: 0; }
2013-08-20 01:34:28 +02:00
.alternate tbody {
border: 1px solid #ccc;
2013-03-31 10:19:51 +02:00
}
.alternate thead tr > * + * {
2013-08-20 01:34:28 +02:00
border-left: 0;
2013-03-31 10:19:51 +02:00
}
.alternate tbody tr > * + * {
2013-08-20 01:34:28 +02:00
border-left: 1px solid #ccc;
2013-03-31 10:19:51 +02:00
}
/* alternate-vert tables */
2013-08-20 01:34:28 +02:00
.alternate-vert {
border: 0;
border-right: 1px solid #ccc;
2013-03-31 10:19:51 +02:00
}
.alternate-vert tr > :first-child {
2013-08-20 01:34:28 +02:00
border-bottom: 0;
2013-03-31 10:19:51 +02:00
}
.alternate-vert tr > * + * {
2013-08-20 01:34:28 +02:00
border-top: 1px solid #ccc;
2013-03-31 10:19:51 +02:00
}
/* striped tables */
.striped tbody tr:nth-child(odd) {
2013-08-20 01:34:28 +02:00
background: #eee;
background: rgba(0, 0, 0, .05);
2013-03-31 10:19:51 +02:00
}
/* striped-vert tables */
.striped-vert tr > :first-child {
2013-08-20 01:34:28 +02:00
background: #eee;
background: rgba(0, 0, 0, .05);
}