-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathto-do.css
124 lines (119 loc) · 2.09 KB
/
to-do.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
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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
}
body{
background-color: #fff;
color:#000;
height:100vh;
display:flex;
justify-content: center;
align-items: center;
padding: 0 30px;
}
.heading{
display:flex;
align-items: center;
justify-content: space-between;
}
.todo-body{
background-color: #f2f2f2;
width:350px;
min-height: 400px;
height:auto;
border-radius:10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.todo-body h2{
font-weight: 500;
font-size:25px;
letter-spacing: 2px;
display:inline-block;
margin:15px 0px 0px 10px;
}
.heading i{
margin:15px 10px 0px 10px;
cursor: pointer;
/* color: #ffffff61; */
}
.todo-body ul{
list-style-type: none;
}
.todo-body hr{
border:0.2px solid #29292a90;
margin:15px 0px;
}
.todo-body p{
display:inline;
font-weight:400;
letter-spacing: 1px;
}
.todo-body span{
display:block;
margin-left:42px;
font-size:10px;
}
.check{
width:20px;
cursor: pointer;
}
.todo-body li{
margin:10px 0;
}
.todo-body i{
margin:0 10px;
}
.checked{
text-decoration: line-through;
}
.new-task button{
height:30px;
width:60px;
background-color: #fff !important;
border-radius: 5px;
outline: 0;
border:0;
cursor: pointer;
margin-left:5px;
}
.new-task input{
height:30px;
width:200px;
border-radius: 3px;
outline: 0;
border:0;
margin-left:10px;
}
.new-task i{
cursor: pointer;
margin-right:10px;
}
.list-item{
display:flex;
align-items: center;
justify-content: space-between;
}
.task-info{
padding-left: 20px;
}
.submit{
font-weight: 500;
}
.submit:hover{
transform: scale(0.98);
}
.cross{
margin-left:50%;
cursor: pointer;
margin-right:18px !important;
}
a{ font-size: 10px;
color: #a7a7a7;
position: absolute;
left: 50%;
bottom: 10px;
transform: translate(-50%);
}