- Updated login page layout by removing unnecessary classes. - Redesigned 404 not found page with new layout and styles. - Enhanced public pages with consistent font styling and hover effects. - Improved ranking page header styling for better readability. - Updated rules page with consistent font and link styles. - Enhanced statistics page header styling. - Refined global CSS variables for better theme consistency. - Updated button styles for improved interaction feedback. - Enhanced table styles for better readability and interaction. - Updated Tailwind configuration to include new font families.
60 lines
1.6 KiB
CSS
60 lines
1.6 KiB
CSS
/*
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
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);
|
|
}
|
|
}
|