You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
361 B
CSS
30 lines
361 B
CSS
4 years ago
|
html {
|
||
|
background: #eee;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
max-width: 1024px;
|
||
|
margin: 1rem auto;
|
||
|
background: white;
|
||
|
padding: 1rem;
|
||
|
}
|
||
|
|
||
|
.task {
|
||
|
list-style: none;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
height: 1.5rem;
|
||
|
}
|
||
|
|
||
|
.task input[type="checkbox"] {
|
||
|
margin-right: 0.5rem;
|
||
|
}
|
||
|
|
||
|
.delete-button {
|
||
|
height: 1rem;
|
||
|
padding: 0;
|
||
|
line-height: 0;
|
||
|
padding: 0.5rem;
|
||
|
margin-left: 0.5rem;
|
||
|
}
|