33 lines
516 B
CSS
33 lines
516 B
CSS
.header, .task-wrapper, .task, .task span {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
main {
|
|
margin: 1rem 1rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.header {
|
|
justify-content: space-between;
|
|
background-color: var(--clr-1);
|
|
}
|
|
.task {
|
|
background-color: var(--clr-2);
|
|
}
|
|
|
|
.task, .header, .task-new-wrapper {
|
|
padding: .5rem;
|
|
}
|
|
|
|
.task-new-wrapper {
|
|
background-color: var(--clr-2);
|
|
}
|
|
|
|
img {
|
|
cursor: pointer;
|
|
} |