-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
47 lines (39 loc) · 931 Bytes
/
styles.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
.add-task {
padding-bottom: 20px;
}
.todo-item {
padding: 10px 0;
border-bottom: 1px solid #dddddd;
}
.todo-item .todo-check {
position: relative;
display: inline-block;
border: 1px solid #dddddd;
width: 22px;
height: 22px;
border-radius: 15px;
}
.todo-item .todo-check .checkmark {
color: #ffffff;
position: relative;
top: 4px;
left: 4px;
font-size: 83%;
}
.todo-item .todo-check:hover {
text-decoration: none;
cursor: pointer;
}
.todo-item .todo-check:hover .checkmark {
color: #dddddd;
}
.todo-item .task-title {
padding-left: 10px;
position: relative;
top: 3px;
}
.todo-item .task-due-date {
text-align: right;
font-size: 80%;
line-height: 27px;
}