/* * This file is a part of the SteamWar software. * * Copyright (C) 2025 SteamWar.de-Serverteam * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ table { width: 100%; overflow: clip; border-collapse: collapse; thead { border-bottom: 2px solid rgba(245, 158, 11, 0.3); font-family: "Barlow Condensed", sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #f59e0b; } thead th { padding: 0.6rem 0.8rem; text-align: left; } tbody { text-align: center; } tbody td { padding: 0.5rem 0.8rem; border-bottom: 1px solid rgba(255, 255, 255, 0.03); } tbody tr { transition: background 0.2s ease; } tbody tr:nth-child(odd) { background: rgba(255, 255, 255, 0.02); } tbody tr:hover { background: rgba(245, 158, 11, 0.04); } }