2020-02-05 14:50:57 +03:00
|
|
|
div {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
2020-02-05 20:58:14 +03:00
|
|
|
button.selected {
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.todos {
|
2020-02-05 14:50:57 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2020-02-28 00:33:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.todos h1 {
|
2020-02-05 20:58:14 +03:00
|
|
|
text-align: center;
|
2020-02-05 14:50:57 +03:00
|
|
|
}
|
|
|
|
|
2020-02-05 20:58:14 +03:00
|
|
|
.todos__container {
|
2020-02-06 14:30:08 +03:00
|
|
|
width: 450px;
|
2020-02-05 14:50:57 +03:00
|
|
|
}
|
|
|
|
|
2020-02-05 20:58:14 +03:00
|
|
|
.todos__toggleAndInput {
|
2020-02-05 14:50:57 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2020-02-05 20:58:14 +03:00
|
|
|
.todos__toggleButton {
|
2020-02-05 14:50:57 +03:00
|
|
|
height: 40px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
|
|
background-color: white;
|
|
|
|
border: none;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 24px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-02-05 20:58:14 +03:00
|
|
|
.todos__newTaskForm {
|
2020-02-05 14:50:57 +03:00
|
|
|
width: 100%;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2020-02-05 20:58:14 +03:00
|
|
|
.todos__footer {
|
|
|
|
width: 100%;
|
2020-02-05 14:50:57 +03:00
|
|
|
margin-top: 10px;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
2020-02-05 20:58:14 +03:00
|
|
|
.todos__footer__filters .filter:not(:last-child) {
|
2020-02-05 14:50:57 +03:00
|
|
|
margin-right: 10px;
|
|
|
|
}
|