49 lines
771 B
CSS
49 lines
771 B
CSS
/* ----------------------------- */
|
|
/* ==Tables */
|
|
/* ----------------------------- */
|
|
table,
|
|
.table {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
table-layout: fixed;
|
|
border-collapse: collapse;
|
|
vertical-align: top;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.table {
|
|
display: table;
|
|
border: 1px solid #acb3c2;
|
|
background: transparent;
|
|
}
|
|
|
|
.table--zebra tbody tr:nth-child(odd) {
|
|
background: #e7e9ed;
|
|
}
|
|
|
|
.table caption {
|
|
caption-side: bottom;
|
|
padding: 1rem;
|
|
color: #333;
|
|
font-style: italic;
|
|
text-align: right;
|
|
}
|
|
|
|
.table td,
|
|
.table th {
|
|
padding: 0.3rem 0.6rem;
|
|
min-width: 2rem;
|
|
vertical-align: top;
|
|
border: 1px #acb3c2 dotted;
|
|
text-align: left;
|
|
cursor: default;
|
|
}
|
|
|
|
.table thead {
|
|
color: #212529;
|
|
background: transparent;
|
|
}
|
|
|
|
.table--auto {
|
|
table-layout: auto;
|
|
}
|