Updating game data to mid season patch and made card gallery nicer

This commit is contained in:
2026-07-17 09:42:50 -04:00
parent 7b0f2ce1a5
commit 5aff9910c1
709 changed files with 1485 additions and 547 deletions
@@ -10,7 +10,7 @@
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 12px rgba(0,0,0,0.25);
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.deck-name-input {
@@ -79,8 +79,13 @@
animation: fade-in 0.2s ease-out;
}
.save-ok { color: #66bb6a; }
.save-error { color: #ef5350; }
.save-ok {
color: #66bb6a;
}
.save-error {
color: #ef5350;
}
/* ── Main Layout ── */
.builder-layout {
@@ -193,7 +198,9 @@
align-items: center;
}
.search-clear:hover { color: var(--text-primary); }
.search-clear:hover {
color: var(--text-primary);
}
.filter-select {
width: 130px;
@@ -239,8 +246,15 @@
padding: 0;
}
.col-btn:hover { background: var(--bg-hover); color: var(--text-primary); }
.col-btn.active { background: var(--accent); color: #fff; }
.col-btn:hover {
background: var(--bg-hover);
color: var(--text-primary);
}
.col-btn.active {
background: var(--accent);
color: #fff;
}
/* ── Browser Grid ── */
.browser-grid {
@@ -322,19 +336,19 @@
display: flex;
align-items: center;
justify-content: center;
border: 1.5px solid rgba(255,255,255,0.25);
box-shadow: 0 2px 6px rgba(0,0,0,0.4);
border: 1.5px solid rgba(255, 255, 255, 0.25);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.maxed-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.5);
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
color: rgba(255,255,255,0.45);
color: rgba(255, 255, 255, 0.45);
}
.browser-card-name {
@@ -368,7 +382,7 @@
position: sticky;
top: 0;
z-index: 10;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.card-count {
@@ -379,10 +393,23 @@
gap: 0.15rem;
}
.count-denom { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); }
.count-ok { color: #66bb6a; }
.count-over { color: #ef5350; }
.count-under { color: var(--text-secondary); }
.count-denom {
font-size: 0.78rem;
font-weight: 400;
color: var(--text-muted);
}
.count-ok {
color: #66bb6a;
}
.count-over {
color: #ef5350;
}
.count-under {
color: var(--text-secondary);
}
/* ── Mana Curve ── */
.mana-curve {
@@ -451,18 +478,22 @@
opacity: 0.7;
}
.deck-empty i { font-size: 2rem; }
.deck-empty i {
font-size: 2rem;
}
.deck-row {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.3rem 0.75rem;
border-bottom: 1px solid rgba(255,255,255,0.04);
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
transition: background 0.12s ease;
}
.deck-row:hover { background: var(--bg-hover); }
.deck-row:hover {
background: var(--bg-hover);
}
.deck-row-img {
width: 26px;
@@ -523,7 +554,10 @@
color: var(--accent);
}
.count-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.count-btn:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.count-display {
font-size: 0.82rem;
@@ -556,7 +590,9 @@
font-size: 0.72rem;
}
.divers-section { padding-bottom: 0.5rem; }
.divers-section {
padding-bottom: 0.5rem;
}
.diver-slot {
display: flex;
@@ -621,10 +657,15 @@
transition: all 0.12s ease;
}
.diver-remove:hover { color: #ef5350; background: rgba(239, 83, 80, 0.1); }
.diver-remove:hover {
color: #ef5350;
background: rgba(239, 83, 80, 0.1);
}
/* ── Notes Section ── */
.notes-section { padding-bottom: 1rem; }
.notes-section {
padding-bottom: 1rem;
}
.notes-input {
margin: 0 0.75rem;
@@ -648,7 +689,7 @@
.modal-backdrop {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.6);
background: rgba(0, 0, 0, 0.6);
z-index: 1040;
backdrop-filter: blur(2px);
}
@@ -669,13 +710,19 @@
display: flex;
flex-direction: column;
gap: 0.75rem;
box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(108, 99, 255, 0.1);
box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(108, 99, 255, 0.1);
animation: modal-enter 0.18s ease-out;
}
@keyframes modal-enter {
from { opacity: 0; transform: translate(-50%, -52%) scale(0.97); }
to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
from {
opacity: 0;
transform: translate(-50%, -52%) scale(0.97);
}
to {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
}
.diver-modal-header {