This commit is contained in:
NotSoToothless
2026-05-14 15:23:40 -07:00
committed by GitHub
parent 4056a0410a
commit 1bae4950f7
+4 -1
View File
@@ -29,7 +29,7 @@
display: flex;
align-items: stretch;
text-decoration: none;
overflow: hidden;
overflow: visible;
transform: translateX(0);
opacity: 0;
transition: opacity 380ms ease 120ms, transform 380ms cubic-bezier(.2,.9,.25,1) 120ms, filter 220ms ease;
@@ -49,6 +49,7 @@
.switcher-card:hover .switcher-card-inner { background: rgba(255,255,255,0.04); }
.switcher-card.card-tss:hover { filter: drop-shadow(0 0 14px rgba(255,157,0,0.18)); }
.switcher-card.card-sre:hover { filter: drop-shadow(0 0 14px rgba(144,238,144,0.18)); }
.switcher-card:hover { z-index: 1; }
.switcher-pfp {
flex: 0 0 auto;
@@ -59,9 +60,11 @@
transition: transform 320ms cubic-bezier(.2,.9,.25,1), box-shadow 320ms ease;
}
.switcher-card.card-tss .switcher-pfp {
border-radius: 14px 4px 4px 14px;
box-shadow: 0 0 0 1px rgba(255,157,0,0.35), 0 0 18px -4px rgba(255,157,0,0.45);
}
.switcher-card.card-sre .switcher-pfp {
border-radius: 4px 14px 14px 4px;
box-shadow: 0 0 0 1px rgba(144,238,144,0.35), 0 0 18px -4px rgba(144,238,144,0.45);
}
.switcher-card.card-tss:hover .switcher-pfp { transform: scale(1.05); }