Spaces:
Running
Running
Commit
·
fe47893
1
Parent(s):
4503114
Update index.html
Browse files- index.html +9 -38
index.html
CHANGED
|
@@ -351,6 +351,7 @@ button:hover {
|
|
| 351 |
|
| 352 |
.downloads {
|
| 353 |
background-image: linear-gradient( 135deg, #43CBFF 10%, #9708CC 100%);
|
|
|
|
| 354 |
max-width: 1000px;
|
| 355 |
margin: 0 auto;
|
| 356 |
padding: 20px;
|
|
@@ -362,7 +363,7 @@ button:hover {
|
|
| 362 |
}
|
| 363 |
|
| 364 |
.downloads-options {
|
| 365 |
-
width:
|
| 366 |
display: flex;
|
| 367 |
justify-content: space-between;
|
| 368 |
align-items: center;
|
|
@@ -423,43 +424,6 @@ button:hover {
|
|
| 423 |
.download-button:hover {
|
| 424 |
background-color: #2980b9;
|
| 425 |
}
|
| 426 |
-
/* Styling for Select Tag with Fixed Size */
|
| 427 |
-
|
| 428 |
-
/* Assuming a fixed width and height */
|
| 429 |
-
.select-custom {
|
| 430 |
-
width: 200px; /* Adjust as needed */
|
| 431 |
-
height: 40px; /* Adjust as needed */
|
| 432 |
-
appearance: none;
|
| 433 |
-
-webkit-appearance: none;
|
| 434 |
-
-moz-appearance: none;
|
| 435 |
-
padding: 10px;
|
| 436 |
-
font-size: 16px;
|
| 437 |
-
border: 1px solid #ccc;
|
| 438 |
-
border-radius: 5px;
|
| 439 |
-
background-color: #fff;
|
| 440 |
-
|
| 441 |
-
}
|
| 442 |
-
|
| 443 |
-
|
| 444 |
-
.select-custom::after {
|
| 445 |
-
content: '\25BC';
|
| 446 |
-
position: absolute;
|
| 447 |
-
top: 50%;
|
| 448 |
-
right: 10px;
|
| 449 |
-
transform: translateY(-50%);
|
| 450 |
-
pointer-events: none;
|
| 451 |
-
}
|
| 452 |
-
|
| 453 |
-
|
| 454 |
-
.select-custom option {
|
| 455 |
-
background-color: #fff;
|
| 456 |
-
color: #333;
|
| 457 |
-
}
|
| 458 |
-
|
| 459 |
-
|
| 460 |
-
.select-custom option:hover {
|
| 461 |
-
background-color: #f9f9f9;
|
| 462 |
-
}
|
| 463 |
|
| 464 |
.search-input {
|
| 465 |
padding: 10px;
|
|
@@ -528,6 +492,13 @@ button:hover {
|
|
| 528 |
<div class="downloads">
|
| 529 |
<div class="downloads-options">
|
| 530 |
<input type="text" id="search" placeholder="Search..." class="form-control">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 531 |
|
| 532 |
</div>
|
| 533 |
|
|
|
|
| 351 |
|
| 352 |
.downloads {
|
| 353 |
background-image: linear-gradient( 135deg, #43CBFF 10%, #9708CC 100%);
|
| 354 |
+
border-radius: 8px;
|
| 355 |
max-width: 1000px;
|
| 356 |
margin: 0 auto;
|
| 357 |
padding: 20px;
|
|
|
|
| 363 |
}
|
| 364 |
|
| 365 |
.downloads-options {
|
| 366 |
+
width: 200px;
|
| 367 |
display: flex;
|
| 368 |
justify-content: space-between;
|
| 369 |
align-items: center;
|
|
|
|
| 424 |
.download-button:hover {
|
| 425 |
background-color: #2980b9;
|
| 426 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 427 |
|
| 428 |
.search-input {
|
| 429 |
padding: 10px;
|
|
|
|
| 492 |
<div class="downloads">
|
| 493 |
<div class="downloads-options">
|
| 494 |
<input type="text" id="search" placeholder="Search..." class="form-control">
|
| 495 |
+
<div style="width: 60px;">
|
| 496 |
+
<select id="sort">
|
| 497 |
+
<option value="recent"> Sort by Recent </option>
|
| 498 |
+
<option value="name">Sort by Name</option>
|
| 499 |
+
<option value="artist">Sort by Artist</option>
|
| 500 |
+
</select>
|
| 501 |
+
</div>
|
| 502 |
|
| 503 |
</div>
|
| 504 |
|