JAYASWAROOP commited on
Commit
cda630e
1 Parent(s): d188178

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +11 -6
index.html CHANGED
@@ -415,25 +415,30 @@ button:hover {
415
  background-color: #2980b9;
416
  }
417
 
 
 
 
418
  .search-input {
 
 
419
  padding: 10px;
420
  font-size: 16px;
421
  border: 1px solid #ccc;
422
  border-radius: 5px;
423
  background-color: #fff;
424
-
425
  }
426
 
427
-
428
  .search-input::placeholder {
429
  color: #999;
430
  }
431
 
432
-
433
  .search-input:focus {
434
  outline: none;
435
- border-color: #3498db;
436
- box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
437
  }
438
 
439
 
@@ -482,7 +487,7 @@ button:hover {
482
  <div class="downloads">
483
  <div class="downloads-options">
484
  <div>
485
- <input type="text" id="search" placeholder="Search..." class="form-control">
486
  </div>
487
  <div style="width: 160px;">
488
  <select id="sort">
 
415
  background-color: #2980b9;
416
  }
417
 
418
+ /* Styling for Search Input with Fixed Size */
419
+
420
+ /* Assuming a fixed width and height */
421
  .search-input {
422
+ width: 250px; /* Adjust as needed */
423
+ height: 40px; /* Adjust as needed */
424
  padding: 10px;
425
  font-size: 16px;
426
  border: 1px solid #ccc;
427
  border-radius: 5px;
428
  background-color: #fff;
429
+ /* Add your additional styling */
430
  }
431
 
432
+ /* Placeholder text color */
433
  .search-input::placeholder {
434
  color: #999;
435
  }
436
 
437
+ /* Focus state */
438
  .search-input:focus {
439
  outline: none;
440
+ border-color: #3498db; /* Example color on focus */
441
+ box-shadow: 0 0 5px rgba(52, 152, 219, 0.5); /* Example box shadow on focus */
442
  }
443
 
444
 
 
487
  <div class="downloads">
488
  <div class="downloads-options">
489
  <div>
490
+ <input type="text" id="search" placeholder="Search...">
491
  </div>
492
  <div style="width: 160px;">
493
  <select id="sort">