Added css to todo tasks
This commit is contained in:
parent
b53b8758ba
commit
7d3769cf4f
4 changed files with 44 additions and 4 deletions
24
styles.css
24
styles.css
|
|
@ -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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue