Tweak series marker colors

This commit is contained in:
2023-01-31 18:54:08 -08:00
parent 5f1871e11c
commit 7b684a18a9
3 changed files with 21 additions and 8 deletions

View File

@@ -214,7 +214,12 @@ ul.post-list {
display: block;
}
p.post-wordcount {
p.post-status {
margin-bottom: 0.2rem;
margin-top: 0.2rem;
}
p.post-wordcount, p.post-status {
text-align: center;
margin-bottom: 0.6rem;
}
@@ -321,16 +326,17 @@ figure {
.series-status {
display: inline-block;
padding: 0.5rem;
border-radius: 1rem;
border: $standard-border-width solid rgba(black, 0.3);
@include bordered-block;
border-color: rgba(black, 0.3);
&.suspended {
background-color: lighten(yellow, 30%);
color: darken(yellow, 30%);
background-color: lighten(yellow, 40%);
color: darken(yellow, 40%);
}
&.complete {
background-color: lighten(green, 50%);
background-color: lighten(green, 60%);
color: darken(green, 10%);
}