loftest/barcode-beast
0
1 2/* Shared styles across all pages */3body {4 font-family: 'Inter', sans-serif;5 min-height: 100vh;6 display: flex;7 flex-direction: column;8}9 10#game-container {11 aspect-ratio: 16/9;12 height: 70vh;13}14 15canvas {16 background-color: #1f2937;17}18 19/* Inventory styles */20#scanner-container {21 aspect-ratio: 4/3;22 background: #000;23}24 25#interactive {26 width: 100%;27 height: 100%;28}29 30#inventory-table {31 border-collapse: separate;32 border-spacing: 0;33}34 35#inventory-table th {36 position: sticky;37 top: 0;38 background-color: #f8fafc;39}40 41#inventory-table tbody tr:hover {42 background-color: #f8fafc;43}44 45@media (max-width: 768px) {46 #scanner-container {47 height: 50vh;48 }49}50 