-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodolist.css
203 lines (178 loc) · 3.3 KB
/
todolist.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
.draggable {
width: 95%;
text-align: center;
background: rgb(250, 250, 250);
margin: auto;
border-radius: 5px;
line-height: 30px;
border: none;
font-size: 20px;
height: auto;
margin: 11px auto 14px auto;
padding: 10px 0 10px 0;
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.212);
font-family: 'Baloo Bhai', cursive;
}
.draggable:hover{
cursor: grab;
}
.dropzone {
width: 540px;
height: 110px;
background-color: transparent;
margin: 18px auto 0px auto;
border: 2px solid black;
border-radius: 5px;
border-style: dashed;
font-size: 30px;
font-weight: bold;
font-family: 'Lato', sans-serif;
}
#todolistname{
margin: auto;
width: 20%;
text-align: center;
font-family: 'Chewy', cursive;
font-size: 44px;
}
#inputtask{
position: relative;
width: 100%;
height: 45px;
color: black;
font-size: 18px;
border-radius: 12px;
font-family: 'Righteous', cursive;
border: 2px black solid;
background-color: transparent;
margin-right: 10px;
}
#AddTask{
position: relative;
margin: 1% 1% 1% 27%;
width: 44%;
padding: 5px 5px 5px 5px;
}
#AddTask div{
margin: auto;
width: 46%;
height: auto;
padding: 5px 5px 5px 5px;
}
.add_edit_btns{
position: relative;
background-color: transparent;
border-radius: 5px;
border: 2px solid black;
font-family: 'Righteous', cursive;
font-size: 22px;
cursor: pointer;
transition: ease-in 0.1s;
}
.add_edit_btns:hover{
background-color: rgb(8, 192, 8);
color: white;
border: 2px solid rgb(8, 192, 8);
}
#Tasks{
display: flex;
justify-content: center;
height: auto;
padding: 3px;
}
#a{
width: 100%;
display: flex;
justify-content: center;
padding: 3px;
background-color: rgb(220, 220, 220);
border-radius: 10px;
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.212),0 17px 50px 0 rgba(0, 0, 0, 0.212);
border: none;
}
.childtask{
width: 77%;
text-align: center;
}
#a:first-child{
margin: 1px 30px 1px 30px;
}
#a:last-child{
margin: 1px 30px 1px 30px;
}
#taskscontent{
border: none;
}
#orderbtn{
text-align: right;
border: none;
}
#orderbtn button{
color: white;
background-color: black;
padding: 5px,5px,5px,5px;
border: 2px solid black;
border-radius: 3px;
transition: 0.5s;
font-family: 'Lato', sans-serif;
font-size: 20px;
}
#orderbtn button:hover{
cursor: pointer;
border: 2px solid black;
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.61);
}
#a p{
font-family: 'Righteous', cursive;
font-size: 30px;
font-weight: bold;
}
@keyframes animationDropCenter {
0% {
top:100%;
}
50%{
top: 72%;
}
}
#dustbin{
position: absolute;
top: 26px;
left: 19px;
}
#editid{
position: absolute;
top: 28px;
left: 249px;
}
#tooldiv{
display: none;
width: 380px;
height: 147px;
border-radius: 73px ;
position: fixed;
top: 75%;
left: 37%;
z-index: 1002;
animation: animationDropCenter 0.5s;
padding: 10px 10px 10px 10px;
background-color: rgba(0, 0, 0, 0.24);
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.61);
}
#blackcurtain{
position: fixed;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background:#000;
opacity: .80;
filter: alpha(opacity=30);
z-index: 1000;
animation: animateBackground 0.6s ;
display: none;
}
@keyframes animateBackground {
from {opacity: 0.3;}
to {opacity: 0.80;}
}