Start working on series pages

This commit is contained in:
2023-01-31 17:43:05 -08:00
parent e7cada3764
commit 115057d837
5 changed files with 65 additions and 0 deletions

View File

@@ -318,3 +318,25 @@ figure {
}
}
}
.series-status {
display: inline-block;
padding: 0.5rem;
border-radius: 1rem;
border: $standard-border-width solid rgba(black, 0.3);
&.suspended {
background-color: lighten(yellow, 30%);
color: darken(yellow, 30%);
}
&.complete {
background-color: lighten(green, 50%);
color: darken(green, 10%);
}
&.ongoing {
background-color: lighten(lightblue, 10%);
color: darken(lightblue, 60%);
}
}