53 lines
1.1 KiB
SCSS
53 lines
1.1 KiB
SCSS
// --------------------------------------------------------------------------------
|
|
// Block: Table
|
|
// --------------------------------------------------------------------------------
|
|
table.block {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: table;
|
|
width: 100%;
|
|
table-layout: auto;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table.block>thead>tr,
|
|
table.block>tbody>tr {
|
|
margin: 0;
|
|
padding: 0;
|
|
vertical-align: top;
|
|
}
|
|
|
|
table.block>thead>tr {
|
|
background: $theme-article-table-head-background;
|
|
}
|
|
|
|
table.block>tbody>tr {
|
|
background: $theme-article-table-body-background;
|
|
}
|
|
|
|
table.block>tbody>tr:nth-child(2n) {
|
|
background: $theme-article-table-body-background-alt;
|
|
}
|
|
|
|
table.block>thead>tr>th,
|
|
table.block>tbody>tr>th {
|
|
margin: 0;
|
|
padding: 0.75rem 1.5rem;
|
|
font-weight: bold;
|
|
font-variant: small-caps;
|
|
text-align: start;
|
|
vertical-align: top;
|
|
border: 1px solid rgba(0, 0, 0, 0.5);
|
|
border-top: none;
|
|
border-bottom: none;
|
|
}
|
|
|
|
table.block>thead>tr>td,
|
|
table.block>tbody>tr>td {
|
|
margin: 0;
|
|
padding: 0.5rem 0.75rem;
|
|
border: 1px solid rgba(0, 0, 0, 0.5);
|
|
border-top: none;
|
|
border-bottom: none;
|
|
}
|