forked from ayushi624/To-Do-List-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.css
More file actions
233 lines (201 loc) · 4.02 KB
/
practice.css
File metadata and controls
233 lines (201 loc) · 4.02 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
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
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: white;
text-align: center;
/* padding: 50px; */
}
/* Container Styles */
.container {
width: 100%;
min-height: 100vh;
/* background-color: white; */
padding-top: 40px;
padding-bottom: 40px;
background: linear-gradient(45deg, #b1d4dd 50%, #d1f2fb 50%);
/* text-align: center; */
}
/* Form Container */
.form-container,
.profile-container {
display: none;
}
.form-container {
margin: auto;
margin-top: 40px;
width: 800px;
height: 450px;
background-color: white;
border-radius: 10px;
padding: 40px;
box-shadow: 10px 10px 20px rgba(81, 80, 79, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}
.form-container input,
.form-container button {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 4px;
border: 1px solid #ddd;
}
.form-container textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 4px;
border: 1px solid #ddd;
}
.form-container button {
background-color: #5697b1;
color: white;
cursor: pointer;
}
.form-container button:hover {
background-color: #467b90;
}
/* Profile Container */
.profile-container {
position: relative;
width: 100%;
max-width: 1000px;
margin: 0 auto;
}
.profile-container h2 {
font-size: 1.8rem;
color: #333;
}
.profile-container p {
font-size: 1rem;
color: #555;
}
.info-container {
width: 1000px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-between;
}
.todo-info {
position: fixed;
right: 50px;
top: 40px;
font-size: 20px;
}
.profile-part {
}
/* Button Styling */
.btn1 {
padding: 15px 30px;
font-size: 18px;
margin: 20px;
cursor: pointer;
border-radius: 10px;
border: 2px solid#617980;
background-color: #beeffd;
color: #405054;
margin-top: 130px;
}
.btn2 {
padding: 15px 30px;
font-size: 18px;
margin: 20px;
cursor: pointer;
border-radius: 10px;
border: 2px solid #617980 ;
background-color: #9bd3e1;
color: #405054;
margin-top: 130px;
}
/* List Dropdown Styles */
#listDropdown {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: space-between;
position: relative;
margin-top: 20px;
background-color: #f9f9f9;
border: 1px solid #e0e0e0;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
/* width: 40%; */
/* max-width: 800px; */
z-index: 10;
}
/* List Item Styling */
#listDropdown .list-item {
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 15px;
margin-bottom: 15px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
gap: 5px;
flex: 1 1 25%;
}
#listDropdown .list-item:hover {
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
#listDropdown .list-item h4 {
margin: 0;
font-size: 1.2em;
color: #333;
}
#listDropdown .list-item p {
margin: 0;
font-size: 0.95em;
color: #555;
}
#listDropdown p {
padding: 10px;
color: #888;
font-style: italic;
text-align: center;
}
/* Progress Bar Styling */
.progress-bar-container {
display: flex;
align-items: center;
margin-top: 5px;
}
.progress-bar {
height: 10px;
width: 70%;
background-color: lightgray;
border-radius: 5px;
overflow: hidden;
position: relative;
}
.progress-bar div {
height: 100%;
background-color: green;
border-radius: 5px;
}
/* Delete Button Styling */
.delete-btn {
background-color: #ff6f61;
color: white;
border: none;
padding: 4px;
cursor: pointer;
margin-left: 10px;
font-size: 12px;
border-radius: 4px;
}
.delete-btn:hover {
/* font-size: 13px; */
/* transform: scale(1.05); */
background-color: white;
color: #ff6f61;
border: 2px solid #ff6f61;
padding: 2.5px;
}