Stylize TODO/DONE states with CSS

This commit is contained in:
Debanjum Singh Solanky 2022-07-28 06:42:57 +04:00
parent 581b6097c7
commit f040b3f65c

View file

@ -159,6 +159,18 @@
#json {
white-space: pre-wrap;
}
span.task-status {
color: white;
padding: 3.5px 3.5px 0;
margin: 5px;
}
span.task-status.todo {
background-color: rgb(39, 149, 182);
}
span.task-status.done {
background-color: rgb(81, 143, 31);
}
</style>
</html>