1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 05:41:31 +00:00

Beautified the table's in dark mode.

This commit is contained in:
Cotes Chung
2020-01-11 17:52:38 +08:00
parent b09f5127ad
commit e09fd4d6c8
3 changed files with 11 additions and 2 deletions

View File

@@ -722,7 +722,11 @@ table thead {
border-bottom: solid 2px rgba(210, 215, 217, 0.75);
}
table thead+tbody tr {
table thead+tbody tr:nth-child(2n) {
background-color: var(--tb-even-bg);
}
table thead+tbody tr:last-child:nth-child(2n) {
border-bottom: solid 1px var(--tb-odd-bg, rgba(210, 215, 217, 0.75));
}