specials.css: add <table> a color display

This commit is contained in:
minoplhy 2024-10-19 23:23:32 +07:00
parent 061bcdfe09
commit 57c6960376
Signed by: minoplhy
GPG Key ID: 41D406044E2434BF

View File

@ -22,4 +22,22 @@
.hide-display {
display: none;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #f4b7b7;
}
.dark-mode tr:nth-child(even) {
background-color: #340b0b;
}