Polish results, patients, and nav state
This commit is contained in:
45
styles.css
45
styles.css
@@ -205,6 +205,19 @@ button {
|
||||
color: white;
|
||||
background: linear-gradient(135deg, var(--brand), #0f9488);
|
||||
box-shadow: 0 12px 24px rgba(15, 118, 110, 0.24);
|
||||
transform: translateX(2px);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-link.active::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 8px;
|
||||
top: 10px;
|
||||
bottom: 10px;
|
||||
width: 3px;
|
||||
border-radius: 99px;
|
||||
background: rgba(255, 255, 255, 0.78);
|
||||
}
|
||||
|
||||
.nav-link small {
|
||||
@@ -832,6 +845,15 @@ tr:last-child td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.mobile-nav .nav-link.active {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 14px 22px rgba(15, 118, 110, 0.18);
|
||||
}
|
||||
|
||||
.mobile-nav .nav-link.active::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.mobile-nav .nav-link small {
|
||||
display: none;
|
||||
}
|
||||
@@ -873,6 +895,25 @@ tr:last-child td {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.swap-zone {
|
||||
animation: swap-in 220ms ease;
|
||||
}
|
||||
|
||||
.swap-in {
|
||||
animation: swap-in 220ms ease;
|
||||
}
|
||||
|
||||
@keyframes swap-in {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(6px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.desktop-only {
|
||||
display: block;
|
||||
}
|
||||
@@ -962,6 +1003,10 @@ tr:last-child td {
|
||||
.auth-mini-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.mobile-nav .nav-link.active {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 620px) {
|
||||
|
||||
Reference in New Issue
Block a user