2021-10-03 18:10:16 +05:30
|
|
|
/* Empty. change later */
|
|
|
|
|
|
2021-10-08 10:23:06 +05:30
|
|
|
.book {
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.book__title {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.book__author {
|
|
|
|
|
color: var(--text-muted);
|
2021-10-09 20:48:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.todo-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 30px 20px 0;
|
|
|
|
|
width: 70%;
|
|
|
|
|
border-bottom: 1px solid #cecece;
|
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
|
font-weight: 100;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=checkbox] {
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=checkbox]:focus {
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|