Files
CSS-NibblePoker/scss/site/table.scss
T
aziascreations 95ffb881f9 Added basic theme support for future recoloring
Update .gitignore, border.scss, backgrounds.scss, and 12 more files
2026-05-07 12:47:03 +02:00

29 lines
515 B
SCSS

// NibblePoker CSS Theme - CC0 1.0 (Public Domain)
/* Site > Tables */
.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};
}
}