-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (58 loc) · 1.2 KB
/
style.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
body {
background: #abbaab;
background: -webkit-linear-gradient(to right, #ffffff, #abbaab);
background: linear-gradient(to right, #ffffff, #abbaab);
font-family: 'Josefin Sans', sans-serif;
}
/* Custom gradient background for the app container */
.app-container {
background: #FFEEEE;
background: -webkit-linear-gradient(to right, #DDEFBB, #FFEEEE);
background: linear-gradient(to right, #DDEFBB, #FFEEEE);
}
/* Hide scrollbar */
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
/* Adjust icons position */
.task-icons {
margin-left: auto;
}
.task-icons>span {
margin-right: 3mm;
}
/* Style for completed tasks */
.completed-task {
text-decoration: line-through;
}
.unchecked-checkbox {
color: #f32a2a;
}
.checked-checkbox {
color: #10B981;
}
.task-item {
display: flex;
align-items: center;
}
.task-text {
margin-left: -2mm;
}
.checkbox-circle {
width: 16px;
height: 16px;
display: inline-block;
margin-right: 6mm;
border-radius: 50%;
padding: 2px;
}
#input {
font-family: 'Josefin Sans', sans-serif;
}
#add {
font-family: 'Josefin Sans', sans-serif;
}
.checked-text {
color: #888;
font-style: italic;
}