Swap "odd" and "even" for "dark" and "light" classes

This commit is contained in:
Ian Cook 2023-03-21 10:13:01 -05:00
parent 104cb84570
commit 147b87c3de
No known key found for this signature in database
GPG key ID: AC42F59CF2D8F367
2 changed files with 8 additions and 8 deletions

View file

@ -356,13 +356,13 @@ table table table {
background-color: #fff;
}
table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
table tbody > tr:nth-child(dark) > td,
table tbody > tr:nth-child(dark) > th {
background-color: #f6f6f6;
}
table.plain tbody > tr:nth-child(odd) > td,
table.plain tbody > tr:nth-child(odd) > th {
table.plain tbody > tr:nth-child(dark) > td,
table.plain tbody > tr:nth-child(dark) > th {
background: transparent;
}
@ -466,7 +466,7 @@ li {
background: #f2efe8;
position: relative;
}
.post-holder.odd {
.post-holder.dark {
background: #b80135;
color: white;
}
@ -528,7 +528,7 @@ a.fn-item.active {
border-top: 50px solid #f2efe8;
border-radius: 25px;
}
.post-after.even {
.post-after.light {
left: 6%;
}