Colors for dark mode table styling

This commit is contained in:
smoreface 2022-10-15 21:41:24 -07:00
parent 92a806acd0
commit 8e052c65bd

View file

@ -67,6 +67,23 @@ div#series-note {
border-bottom: 3px solid #3ee4f06c;
}
/* styling for tables */
main#content table, th, td {
border: 2px solid #8e869d;
}
main#content th {
background-color: #553857;
}
main#content tbody tr:nth-child(even) {
background-color: #372538;
}
main#content tbody tr:nth-child(odd) {
background-color: #503652;
}
footer#footer {
color: #cccccc;
}