Added css to todo tasks

This commit is contained in:
ransurf 2021-10-09 20:48:15 -07:00
parent b53b8758ba
commit 7d3769cf4f
4 changed files with 44 additions and 4 deletions

View file

@ -11,4 +11,26 @@
.book__author {
color: var(--text-muted);
}
}
.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;
}