35 lines
No EOL
597 B
CSS
35 lines
No EOL
597 B
CSS
/* Empty. change later */
|
|
|
|
.book {
|
|
border: 1px solid var(--background-modifier-border);
|
|
padding: 10px;
|
|
}
|
|
|
|
.book__title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.book__author {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.todo-item {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
padding: 0px 0px 0;
|
|
width: 80%;
|
|
border-bottom: 1px solid #cecece;
|
|
font-family: Roboto, sans-serif;
|
|
font-weight: normal;
|
|
font-size: 16px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
input[type=checkbox] {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
input[type=checkbox]:focus {
|
|
outline: 0;
|
|
} |