-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (44 loc) · 911 Bytes
/
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
#taskList button {
background-color: #ff5050;
color: #fff;
padding: 4px 8px;
border: none;
border-radius: 4px;
cursor: pointer;
}
#taskList span.completed {
text-decoration: line-through;
color: #888;
}
#taskList button:hover {
background-color: #ff3333;
}
.container {
background-color: rgba(255, 255, 255, 0.9);
padding: 20px;
}
#taskInput,
#dueDate {
border: 1px solid #ccc;
padding: 8px;
border-radius: 4px;
margin-right: 10px;
}
#addTask {
background-color: #0073e6;
color: #fff;
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
}
#addTask:hover {
background-color: #005cbf;
}
body {
background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}
#taskList li.completed span {
text-decoration: line-through;
color: #888;
}