-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (105 loc) · 1.94 KB
/
style.css
File metadata and controls
109 lines (105 loc) · 1.94 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
*{
padding: 0;
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
box-sizing: border-box;
}
.containeer{
width:100%;
min-height: 100vh;
background: linear-gradient(135deg,#4e085f,#153677);
padding: 10px;
}
.todo-list{
width: 100%;
max-width: 450px;
margin: 100px auto 20px;
background: #fff;
padding: 40px 30px 70px;
border-radius: 10px;
}
.todo-list h2{
color: #002765;
/* display: flex;
align-items: center; */
margin-bottom: 20px;
}
.serch{
display: flex;
align-items: center;
justify-content: space-between;
background: #edeef0;
border-radius: 30px;
padding-left: 30px;
margin-bottom: 25px;
}
#todo-input{
flex: 1;
border: none;
outline: none;
background-color: transparent;
padding: 10px;
font-size: 17px;
}
#btn{
border: none;
outline: none;
background: #ff5945;
padding: 10px 40px;
border-radius: 40px;
font-size: 17px;
color: #fff;
cursor: pointer;
}
ul{
display: flex;
flex-direction: column;
}
ul li{
list-style: none;
font-size: 17px;
cursor: pointer;
padding: 11px;
display: flex;
justify-content: space-between;
}
input[type="checkbox"] {
width: 17px;
cursor: pointer;
position: relative;
top:2px;
}
ul li span{
position: relative;
right: 0px;
top: 2px;
width: 40px;
height: 40px;
}
ul li button{
padding: 8px 20px;
border: 10px;
border-radius: 10px;
background: #ff5945;
border: none;
color: #fff;
cursor: pointer;
}
ul li button:hover{
background: #fc7566;
}
.addtaskss{
display: flex;
align-items: center;
}
#addtask {
display: flex;
justify-content: space-between;
width: 400px;
}
.hello input {
margin: 4px;
}
.hello label{
cursor: pointer;
}