static: use alternating colors on table

This commit is contained in:
coon 2023-11-29 16:00:37 +01:00
parent 7d9a9264dc
commit a571010018

View file

@ -24,6 +24,15 @@ table {
border-spacing: 0pt;
}
table tr:nth-child(odd) td {
background:#1e1f1a;
}
table tr:nth-child(even) td {
background:#171812;
}
#flexbox-container {
display: flex;
flex-direction: column;