JAYASWAROOP commited on
Commit
2c6d9c9
1 Parent(s): e89aae7

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +30 -7
index.html CHANGED
@@ -435,12 +435,12 @@ button:hover {
435
  border: 1px solid #ccc;
436
  border-radius: 5px;
437
  background-color: #fff;
438
- /* Add your additional styling */
439
  }
440
 
441
- /* Styling for the dropdown arrow */
442
  .select-custom::after {
443
- content: '\25BC'; /* Unicode for down arrow */
444
  position: absolute;
445
  top: 50%;
446
  right: 10px;
@@ -448,17 +448,40 @@ button:hover {
448
  pointer-events: none;
449
  }
450
 
451
- /* Styling for the dropdown list */
452
  .select-custom option {
453
  background-color: #fff;
454
  color: #333;
455
  }
456
 
457
- /* Hover effect on options */
458
  .select-custom option:hover {
459
  background-color: #f9f9f9;
460
  }
461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
 
463
  </style>
464
  </head>
@@ -504,10 +527,10 @@ button:hover {
504
  <div class="offcanvas-body">
505
  <div class="downloads">
506
  <div class="downloads-options">
507
- <input type="text" id="search" placeholder="Search...">
508
  <div>
509
  <select id="sort" class="select-custom">
510
- <option value="recent">Sort by Recent</option>
511
  <option value="name">Sort by Name</option>
512
  <option value="artist">Sort by Artist</option>
513
  </select>
 
435
  border: 1px solid #ccc;
436
  border-radius: 5px;
437
  background-color: #fff;
438
+
439
  }
440
 
441
+
442
  .select-custom::after {
443
+ content: '\25BC';
444
  position: absolute;
445
  top: 50%;
446
  right: 10px;
 
448
  pointer-events: none;
449
  }
450
 
451
+
452
  .select-custom option {
453
  background-color: #fff;
454
  color: #333;
455
  }
456
 
457
+
458
  .select-custom option:hover {
459
  background-color: #f9f9f9;
460
  }
461
 
462
+ .search-input {
463
+ width: 250px;
464
+ height: 40px;
465
+ padding: 10px;
466
+ font-size: 16px;
467
+ border: 1px solid #ccc;
468
+ border-radius: 5px;
469
+ background-color: #fff;
470
+
471
+ }
472
+
473
+
474
+ .search-input::placeholder {
475
+ color: #999;
476
+ }
477
+
478
+
479
+ .search-input:focus {
480
+ outline: none;
481
+ border-color: #3498db;
482
+ box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
483
+ }
484
+
485
 
486
  </style>
487
  </head>
 
527
  <div class="offcanvas-body">
528
  <div class="downloads">
529
  <div class="downloads-options">
530
+ <input type="text" id="search" placeholder="Search..." class="search-input">
531
  <div>
532
  <select id="sort" class="select-custom">
533
+ <option value="recent"> Sort by Recent </option>
534
  <option value="name">Sort by Name</option>
535
  <option value="artist">Sort by Artist</option>
536
  </select>