pico/scss/content/_table.scss

40 lines
526 B
SCSS
Raw Normal View History

2019-11-27 15:31:49 +07:00
/**
* Table
*/
table {
width: 100%;
border-spacing: 0;
}
// Cells
th,
td {
padding: ($spacing-gutter/2) $spacing-gutter;
border-bottom: 1px solid var(--table-border);
color: var(--muted-text);
font-weight: $text-weight;
text-align: left;
font-size: 0.875rem;
}
// Titles
th,
thead td {
color: var(--text);
font-size: 1rem;
}
// First row
thead {
th,
td {
border-bottom: 3px solid var(--table-border);
}
}
2019-11-28 21:51:58 +07:00
// Striping
2019-11-27 15:31:49 +07:00
tbody tr:nth-child(odd) {
2019-11-28 21:51:58 +07:00
background-color: var(--table-stripping);
2019-11-27 15:31:49 +07:00
}