Present results in data grid with thumbnails and lightbox links

This commit is contained in:
2026-01-28 16:13:47 +01:00
parent 485275d6c0
commit a6bdaf9613
2 changed files with 74 additions and 14 deletions

View File

@@ -291,3 +291,32 @@ input[type="range"].full-slider::-moz-range-track {
justify-content: space-between;
align-items: center;
}
.results-table {
width: 100%;
border-collapse: collapse;
}
.results-table th, .results-table td {
padding: 10px;
border-bottom: 1px solid #1f2937;
}
.results-table th { text-align: left; color: #9ca3af; font-size: 12px; letter-spacing: 0.3px; }
.results-table .game-cell { display: flex; gap: 10px; align-items: center; }
.results-table .thumb {
width: 72px;
height: 48px;
object-fit: cover;
border-radius: 6px;
border: 1px solid #1f2937;
}
.results-table .game-meta { display: flex; flex-direction: column; gap: 2px; }
.results-table .title-line { font-weight: 700; }
.results-table .muted.small { font-size: 12px; color: #9ca3af; }
.thumb-open {
background: #111827;
border: 1px solid #1f2937;
color: #e5e7eb;
border-radius: 6px;
padding: 4px 8px;
cursor: pointer;
}