-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.css
49 lines (44 loc) · 777 Bytes
/
App.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
body {
font-size: 10px;
margin: 0;
padding: 0;
font-family: "Roboto", "Helvetica", Arial, sans-serif;
background: #f3f3f3;
}
h1, h2, h3, p {
margin: 0;
padding: 0;
}
.todolist {
display: flex;
flex-direction: column;
padding: 1.5em 0;
}
.todoitem {
display: flex;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
width: 100%;
padding: 1.5em;
background: #ffffff;
margin-bottom: 1.5em;
box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
}
.todoitem.done {
background-color: #F8F8F8;
}
.todoitem__title {
color: #171717;
font-size: 1.8em;
}
.todoitem.done .todoitem__title {
color: #AAA;
text-decoration: line-through;
}
.todoitem__remove {
color: #AF1E2D;
text-decoration: underline;
font-size: 1.6em;
cursor: pointer;
}