-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (71 loc) · 1.22 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
72
*{
margin: 0;
padding: 0;
font-family:Verdana, Geneva, Tahoma, sans-serif ;
box-sizing: border-box;
}
.container{
width: 100%;
min-height: 100vh;
background: linear-gradient(135deg,#0d398f,#bc42b6);
padding: 10px;
}
h2{
text-align: center;
color: aliceblue;
}
.input{
display: flex;
align-items: center;
margin-bottom: 20px;
}
textarea{
flex: 1;
padding: 10px;
font-size: 16px;
border:1px solid #ddd ;
border: 5px;
}
.note-icon{
font-size: 24px;
margin-left: 10px;
color: #333;
}
ul{
list-style: none;
padding: none;
}
.todolist li{
background-color: #fff;
padding: 15px;
margin: 10px 0;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
display: flex;
justify-content: space-between;
align-items: center;
}
.todolist li:hover{
background-color: #f9f9f9;
}
.pendingtasks{
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
}
.pendingno{
font-weight: bold;
color: #ff6347;
}
.clear {
background-color: #333;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.clear:hover {
background-color: #555;
}