Spaces:
Sleeping
Sleeping
Commit ·
bd1ea11
1
Parent(s): 7616c7a
Dropdown uses light blue-red gradient background for visibility
Browse files- static/css/style.css +4 -5
static/css/style.css
CHANGED
|
@@ -387,20 +387,19 @@ input:focus, select:focus, textarea:focus {
|
|
| 387 |
border-color: rgba(255,255,255,0.5);
|
| 388 |
}
|
| 389 |
|
| 390 |
-
/* Dropdown —
|
| 391 |
.nav-dropdown {
|
| 392 |
position: absolute;
|
| 393 |
top: calc(100% + 0.5rem);
|
| 394 |
right: 0;
|
| 395 |
min-width: 210px;
|
| 396 |
-
background:
|
| 397 |
-
|
| 398 |
-
-webkit-backdrop-filter: blur(16px);
|
| 399 |
-
border: 1px solid rgba(255,255,255,0.18);
|
| 400 |
border-radius: var(--radius-sm);
|
| 401 |
padding: 0.5rem 0;
|
| 402 |
animation: dropIn 0.15s ease;
|
| 403 |
z-index: 200;
|
|
|
|
| 404 |
}
|
| 405 |
@keyframes dropIn {
|
| 406 |
from { opacity: 0; transform: translateY(-6px); }
|
|
|
|
| 387 |
border-color: rgba(255,255,255,0.5);
|
| 388 |
}
|
| 389 |
|
| 390 |
+
/* Dropdown — light gradient matching nav */
|
| 391 |
.nav-dropdown {
|
| 392 |
position: absolute;
|
| 393 |
top: calc(100% + 0.5rem);
|
| 394 |
right: 0;
|
| 395 |
min-width: 210px;
|
| 396 |
+
background: linear-gradient(135deg, #4a4ed4, #d94060);
|
| 397 |
+
border: none;
|
|
|
|
|
|
|
| 398 |
border-radius: var(--radius-sm);
|
| 399 |
padding: 0.5rem 0;
|
| 400 |
animation: dropIn 0.15s ease;
|
| 401 |
z-index: 200;
|
| 402 |
+
box-shadow: 0 8px 28px rgba(46, 51, 197, 0.3), 0 4px 12px rgba(207, 32, 64, 0.15);
|
| 403 |
}
|
| 404 |
@keyframes dropIn {
|
| 405 |
from { opacity: 0; transform: translateY(-6px); }
|