-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.css
More file actions
131 lines (114 loc) · 1.9 KB
/
Copy pathtodo.css
File metadata and controls
131 lines (114 loc) · 1.9 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content: center;
align-items: center;
}
#mytodos{
padding: 20px;
background-color: aliceblue;
box-shadow: 2px 1px 5px black;
border-radius: 5px;
}
header{
background-color: aqua;
padding: 5px;
border-radius: 5px;
}
header h1{
padding: 5px;
font-size: 24px;
font-weight: 500;
font-variant: small-caps;
}
header p{
font-size: 15px;
padding: 5px;
}
#inputHolder{
margin: 15px 0px;
display: flex;
}
#inputTodo{
padding: 5px;
border-radius: 5px;
width: 100%;
}
#addBtn{
padding: 5px;
border: none;
font-size: 15px;
margin-left: 10px;
background-color: aqua;
border-radius: 5px;
cursor: pointer;
}
#addBtn:hover{
color: green;
background-color: rgb(38, 194, 199);
scale: 1.2;
}
.statusHolder{
display: flex;
gap: 10px;
padding: 10px;
justify-content: center;
}
.status:hover{
cursor: pointer;
color: rgb(3, 143, 120);
}
.status.active{
color: rgb(3, 143, 120);
}
#todos{
display: flex;
flex-direction: column;
list-style: none;
align-items: flex-start;
padding: 10px;
overflow-y: scroll;
}
.hidden{
/* display: none; */
/* visibility: collapse; */
visibility: hidden;
}
.completed{
text-decoration: line-through;
color: green;
}
#todos li{
text-decoration: none;
margin: 5px;
background-color: antiquewhite;
padding: 10px;
border-radius: 5px;
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
}
#dltBtn{
float: right;
border: none;
background-color: aliceblue;
margin: 2px;
}
#dltBtn:hover{
color: red;
scale: 1.2;
cursor: pointer;
}
#checkbox{
float: left;
margin: 2px;
}
footer{
margin: 10px;
padding: 10px;
}