-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (76 loc) · 1.3 KB
/
Copy pathstyles.css
File metadata and controls
76 lines (76 loc) · 1.3 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
body {
background-color:rgb(190, 252, 190);
display:flex;
justify-content: center;
margin:50px;
}
h1 {
text-align:center;
color:rgb(5, 163, 5);
}
.container {
background: #fff;
padding: 25px 35px;
border-radius: 15px;
box-shadow: 0 10px 15px rgba(179, 13, 13, 0.1);
width: 450px;
}
input {
width: 60%;
padding: 12px;
margin-right: 10px;
border-radius: 6px;
border: 2px solid #097e13a8;
font-size: 12px;
}
#addBtn {
background-color:rgb(91, 233, 91);
border-radius: 25%;
}
#addBtn:hover {
background-color:green;
font-size:15px;
}
#clearBtn {
background-color:rgb(91, 233, 91);
border-radius: 25%;
margin-left:15px;
}
#clearBtn:hover {
background-color:#eb1f34;
font-size:15px;
}
ul {
list-style-type: none;
padding: 0;
margin-top: 20px;
}
li {
background: #97f5ae;
padding: 5px;
margin-bottom: 12px;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 20px;
}
li:hover {
background-color: rgb(80, 255, 80);
}
li.completed:before {
content: "✅";
}
.deleteBtn {
background-color: #e44353;
border: none;
color: white;
padding: 6px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
}
.deleteBtn:hover {
background-color: #be0e1f;
font-size:15px;
}