From 8298a4bae53591bbffe8fa001ab058215fbd2c78 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sat, 10 Jan 2026 19:18:53 +0900 Subject: [PATCH] remove existing table design --- static/styles.css | 48 ----------------------------------------------- 1 file changed, 48 deletions(-) diff --git a/static/styles.css b/static/styles.css index f8b689e..dca250d 100644 --- a/static/styles.css +++ b/static/styles.css @@ -171,55 +171,7 @@ button[type='button']:hover, color: var(--black); flex-shrink: 0; } -/* Table Styling */ -table { - width: 100%; - border-collapse: collapse; - margin: 20px 0; - background: rgba(20, 20, 20, 0.8); - border: 1px solid rgb(60, 60, 60); - border-radius: 6px; - overflow: hidden; - font-size: 16px; -} -table th { - background: linear-gradient(to bottom, rgb(50, 50, 50), rgb(40, 40, 40)); - padding: 14px 16px; - text-align: left; - font-weight: 600; - color: var(--white); - border-bottom: 2px solid rgb(80, 80, 80); - text-transform: uppercase; - letter-spacing: 0.5px; - font-size: 13px; -} - -table td { - padding: 12px 16px; - border-bottom: 1px solid rgb(40, 40, 40); - color: var(--light); -} - -table tr:last-child td { - border-bottom: none; -} - -table tr:hover { - background: rgba(55, 114, 255, 0.08); -} - -table a { - color: var(--blue); - text-decoration: none; - font-weight: 500; - transition: color 0.2s ease; -} - -table a:hover { - color: var(--blue-light); - text-decoration: underline; -} /* Styled select for forms */ .fancy-select,