Files
CSS-NibblePoker/scss/defaults/defaults-tables.scss
T
aziascreations 91098bc437 Split and re-ordered SCSS files for easier overrides of defaults (#4)
* Split SCSS for easier changes
* Re-ordered SCSS files for easier overrides of defaults
* Fixed padding classes with auto value
* Added theme """stub"""
2026-05-11 13:32:00 +02:00

30 lines
520 B
SCSS

// NibblePoker CSS Theme - CC0 1.0 (Public Domain)
/* Tables > Defaults */
.table-stylish {
border-collapse: separate;
overflow: hidden;
th {
font-weight: bold;
}
tr {
background-color: #{$color-background-table-tr-alt};
}
tr:nth-child(2n), th {
background-color: #{$color-background-table-tr-main};
}
td:not(:last-of-type), th:not(:last-of-type) {
border-right: 1.5px solid #{$color-border-table};
}
tr:not(:last-of-type) td, th {
border-bottom: 1.5px solid #{$color-border-table};
}
}