Ashrafb commited on
Commit
98c81bd
·
verified ·
1 Parent(s): 47ecffd

Update static/index.html

Browse files
Files changed (1) hide show
  1. static/index.html +39 -0
static/index.html CHANGED
@@ -244,6 +244,11 @@
244
  width: 100%;
245
  text-align: center;
246
  direction: ltr;
 
 
 
 
 
247
  }
248
 
249
  .ai-tool-container h3 {
@@ -389,5 +394,39 @@
389
  .ai-tool-container .btn-download:hover {
390
  background-color: #218838;
391
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  </style>
393
  </div>
 
244
  width: 100%;
245
  text-align: center;
246
  direction: ltr;
247
+ width: 90%; /* Default width for mobile */
248
+ margin: 20px auto; /* Center the container */
249
+ display: flex;
250
+ flex-direction: column;
251
+ justify-content: space-between; /* Adjust space between items */
252
  }
253
 
254
  .ai-tool-container h3 {
 
394
  .ai-tool-container .btn-download:hover {
395
  background-color: #218838;
396
  }
397
+
398
+ /* Media Queries for larger screens */
399
+ @media (min-width: 600px) {
400
+ .ai-tool-container {
401
+ width: 1024px;
402
+ height: auto; /* Ensure height adjusts dynamically */
403
+ padding: 100px; /* Increase padding */
404
+ }
405
+ }
406
+
407
+ @media (min-width: 768px) {
408
+ .ai-tool-container {
409
+ width: 1024px; /* Match image width */
410
+ height: auto; /* Match image height */
411
+ padding: 100px; /* Increase padding */
412
+ }
413
+ }
414
+
415
+ @media (min-width: 992px) {
416
+ .ai-tool-container {
417
+ width: 1024px; /* Match image width */
418
+ height: auto; /* Match image height */
419
+ padding: 100px; /* Increase padding */
420
+ }
421
+ }
422
+
423
+ @media (min-width: 1200px) {
424
+ .ai-tool-container {
425
+ width: 1024px; /* Match image width */
426
+ height: auto; /* Match image height */
427
+ padding: 100px; /* Increase padding */
428
+ }
429
+ }
430
+
431
  </style>
432
  </div>