-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
249 lines (236 loc) · 5.62 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
* {
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
@font-face {
font-family: 'Rocher';
src: url(https://assets.codepen.io/9632/RocherColorGX.woff2);
}
body {
background-position: relative;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-color: #cecece;
}
/* //header Styles */
h1 {
font-family: 'Rocher';
color: #2a2929;
font-weight: 900;
text-shadow: 2px 2px 10px rgb(8, 0, 0);
letter-spacing: 4px;
}
/* container section */
#container {
width: 700px;
height: 450px;
margin: 0 auto;
border: 2px solid #c6c6c6;
border-radius: 20px;
padding: 10px;
color: rgb(61, 61, 61);
background-color:rgb(255, 255, 255);
/* background-image: repeating-linear-gradient(
to top left,
rgba(58, 4, 4, 0.561),
rgba(152, 112, 18, 0.5) 3px
); */
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
/* inputbox styles */
#container input {
/* border:3px solid #0079bf; */
border-radius: 15px;
padding-left:50px;
height:70px;
/* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
background-color: rgb(217, 214, 214);
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
/* input box plceholder styles */
#input-placeholder-icon{
position: absolute;
margin-left: 15px;
height: 70px;
width: 55px;
display: flex;
align-items: center;
}
/* List Items Section */
#list-item {
height: 70%;
overflow: scroll;
border-top: 1px solid rgb(88, 88, 88);
border-bottom: 1px solid rgb(88, 88, 88);
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
/* border: 1px solid #e5e5e5; */
}
ul li {
padding: 10px;
/* padding-left: 0; */
display: flex;
justify-content: space-between;
align-items: inherit;
align-items: center;
}
ul li:hover {
/* background: #f3f3f3; */
/* background-color: #384852a0; */
text-decoration: none;
box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
#list input {
padding: 0;
height: initial;
width: initial;
margin-bottom: 0;
display: none;
cursor: pointer;
}
#list label {
position: relative;
cursor: pointer;
}
#list label:before {
content: "";
/* -webkit-appearance: none; */
background-color: transparent;
border: 2px solid #0079bf;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
padding: 10px;
display: inline-block;
position: relative;
vertical-align: middle;
cursor: pointer;
margin-right: 10px;
}
#list input:checked + label:after {
content: "";
display: block;
position: absolute;
top: 2px;
left: 9px;
width: 6px;
height: 14px;
border: solid #fff;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
#list input:checked + label:before {
background: #0079bf;
}
#list input:checked + label {
text-decoration: line-through;
}
.delete {
height: 28px;
padding: 5px 0px;
border-radius: 3px;
}
.delete:hover {
background: #f2f2f2;
cursor: pointer;
}
h1 {
text-align: center;
}
/* adding tasks */
.add-task {
width: 100%;
outline: none;
font-size: 15px;
padding: 11px;
border: 1px solid #f3f3f3;
margin-bottom: 3px;
}
/* Total Tasks Label */
#total-tasks {
margin-bottom: 20px;
font-size: 13px;
margin-left: 2px;
color: rgb(88, 88, 88);
text-shadow: 2px 2px 10px white;
font-weight: 800;
}
/* complete tasks label */
#complete-tasks {
margin-bottom: 20px;
font-size: 13px;
margin-left: 10px;
color: rgb(88, 88, 88);
text-shadow: 2px 2px 10px white;
font-weight: 800;
cursor: pointer;
}
/* remaining tasks label */
#remaining-tasks {
font-size: 13px;
margin-left: 2px;
color: rgb(88, 88, 88);
text-shadow: 2px 2px 10px white;
font-weight: 800;
}
/* completed tasks */
#completed-tasks {
font-size: 13px;
margin-left: 2px;
color: rgb(88, 88, 88);
text-shadow: 2px 2px 10px white;
font-weight: 800;
}
/* Show all tasks label */
#label-all{
float: right;
font-size: 13px;
margin-left: 2px;
color:rgb(88, 88, 88);
text-shadow: 2px 2px 10px white;
font-weight: 800;
}
/* Show all complete tasks label */
#label-complete{
float: right;
font-size: 13px;
margin-left: 2px;
color:rgb(88, 88, 88);
text-shadow: 2px 2px 10px white;
font-weight: 800;
}
/* Show all uncomplete tasks label */
#label-uncomplete{
float: right;
font-size: 13px;
margin-left: 2px;
color:rgb(88, 88, 88);
text-shadow: 2px 2px 10px white;
font-weight: 800;
}
/* Delete completed tasks label */
#delete-completed-tasks{
float: right;
font-size: 13px;
margin-left: 2px;
color:rgb(88, 88, 88);
text-shadow: 2px 2px 10px white;
font-weight: 800;
cursor: pointer;
}
/* handling all hover function and cursor functionalities */
#delete-completed-tasks:hover,#complete-tasks:hover{
color:rgb(211, 6, 6) ;
}
#label-all,#label-complete,#label-uncomplete{
cursor: pointer;
}
#label-all:hover,#label-complete:hover,#label-uncomplete:hover{
color:rgb(211, 6, 6) !important;
}
/* that's all ::
Made by :Kamlesh Kumar Bind
kkb.mmmut@gmail.com */