Spaces:
Sleeping
Sleeping
Update static/styles.css
Browse files- static/styles.css +69 -4
static/styles.css
CHANGED
@@ -183,6 +183,67 @@ body {
|
|
183 |
word-wrap: break-word;
|
184 |
}
|
185 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
/* Media Queries */
|
187 |
@media (max-width: 768px) {
|
188 |
.chat-container {
|
@@ -212,11 +273,13 @@ body {
|
|
212 |
min-width: 90px;
|
213 |
}
|
214 |
|
215 |
-
.ingredients-list
|
|
|
216 |
max-height: 150px;
|
217 |
}
|
218 |
|
219 |
-
.ingredients-list img
|
|
|
220 |
width: 60px;
|
221 |
height: 60px;
|
222 |
}
|
@@ -251,11 +314,13 @@ body {
|
|
251 |
min-width: 120px;
|
252 |
}
|
253 |
|
254 |
-
.ingredients-list
|
|
|
255 |
max-height: 250px;
|
256 |
}
|
257 |
|
258 |
-
.ingredients-list img
|
|
|
259 |
width: 100px;
|
260 |
height: 100px;
|
261 |
}
|
|
|
183 |
word-wrap: break-word;
|
184 |
}
|
185 |
|
186 |
+
/* Menu items list */
|
187 |
+
.menu-items-list {
|
188 |
+
max-height: 200px;
|
189 |
+
overflow-x: auto;
|
190 |
+
overflow-y: hidden;
|
191 |
+
white-space: nowrap;
|
192 |
+
padding: 10px;
|
193 |
+
margin: 10px 0;
|
194 |
+
background-color: #f9f9f9;
|
195 |
+
border-radius: 5px;
|
196 |
+
display: flex;
|
197 |
+
gap: 10px;
|
198 |
+
}
|
199 |
+
|
200 |
+
.menu-items-list .menu-item {
|
201 |
+
display: inline-flex;
|
202 |
+
flex-direction: column;
|
203 |
+
align-items: center;
|
204 |
+
margin-right: 15px;
|
205 |
+
}
|
206 |
+
|
207 |
+
.menu-items-list img {
|
208 |
+
width: 80px;
|
209 |
+
height: 80px;
|
210 |
+
object-fit: cover;
|
211 |
+
border-radius: 5px;
|
212 |
+
}
|
213 |
+
|
214 |
+
.menu-items-list button {
|
215 |
+
padding: 5px 10px;
|
216 |
+
margin-top: 5px;
|
217 |
+
background-color: #4caf50;
|
218 |
+
color: white;
|
219 |
+
border: none;
|
220 |
+
border-radius: 5px;
|
221 |
+
cursor: pointer;
|
222 |
+
font-size: 12px;
|
223 |
+
}
|
224 |
+
|
225 |
+
.menu-items-list button:hover {
|
226 |
+
background-color: #45a049;
|
227 |
+
}
|
228 |
+
|
229 |
+
/* Customization input box */
|
230 |
+
.customization-input {
|
231 |
+
padding: 10px;
|
232 |
+
margin: 10px 0;
|
233 |
+
border: 1px solid #ccc;
|
234 |
+
border-radius: 5px;
|
235 |
+
background-color: #f0f0f0;
|
236 |
+
}
|
237 |
+
|
238 |
+
.customization-input textarea {
|
239 |
+
width: 100%;
|
240 |
+
padding: 8px;
|
241 |
+
border: 1px solid #ccc;
|
242 |
+
border-radius: 5px;
|
243 |
+
font-size: 14px;
|
244 |
+
min-height: 60px;
|
245 |
+
}
|
246 |
+
|
247 |
/* Media Queries */
|
248 |
@media (max-width: 768px) {
|
249 |
.chat-container {
|
|
|
273 |
min-width: 90px;
|
274 |
}
|
275 |
|
276 |
+
.ingredients-list,
|
277 |
+
.menu-items-list {
|
278 |
max-height: 150px;
|
279 |
}
|
280 |
|
281 |
+
.ingredients-list img,
|
282 |
+
.menu-items-list img {
|
283 |
width: 60px;
|
284 |
height: 60px;
|
285 |
}
|
|
|
314 |
min-width: 120px;
|
315 |
}
|
316 |
|
317 |
+
.ingredients-list,
|
318 |
+
.menu-items-list {
|
319 |
max-height: 250px;
|
320 |
}
|
321 |
|
322 |
+
.ingredients-list img,
|
323 |
+
.menu-items-list img {
|
324 |
width: 100px;
|
325 |
height: 100px;
|
326 |
}
|