Spaces:
Running
Running
Update static/styles.css
Browse files- static/styles.css +33 -0
static/styles.css
CHANGED
@@ -272,6 +272,39 @@ form {
|
|
272 |
|
273 |
|
274 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
/* Responsive Layout */
|
276 |
@media (max-width: 768px) {
|
277 |
.input-container {
|
|
|
272 |
|
273 |
|
274 |
|
275 |
+
.image-container {
|
276 |
+
display: flex;
|
277 |
+
flex-direction: row; /* Force row layout on desktop */
|
278 |
+
justify-content: center;
|
279 |
+
border: 2px solid #aaa;
|
280 |
+
/* padding: 10px; */
|
281 |
+
border-radius: 10px;
|
282 |
+
gap: 10px;
|
283 |
+
max-width: 100%;
|
284 |
+
margin: 10px;
|
285 |
+
}
|
286 |
+
|
287 |
+
.image-container img {
|
288 |
+
width: 30%; /* Each image takes 30% of the container width */
|
289 |
+
height: auto;
|
290 |
+
box-sizing: border-box;
|
291 |
+
}
|
292 |
+
|
293 |
+
@media (max-width: 768px) {
|
294 |
+
.image-container {
|
295 |
+
flex-direction: column; /* Stack images vertically on mobile */
|
296 |
+
align-items: center;
|
297 |
+
}
|
298 |
+
|
299 |
+
.image-container img {
|
300 |
+
width: 100%; /* Full width for each image on mobile */
|
301 |
+
}
|
302 |
+
}
|
303 |
+
|
304 |
+
|
305 |
+
|
306 |
+
|
307 |
+
|
308 |
/* Responsive Layout */
|
309 |
@media (max-width: 768px) {
|
310 |
.input-container {
|