remove existing table design
All checks were successful
Flask Run Test / Flask-Run-Test (push) Successful in 9s

This commit is contained in:
2026-01-10 19:18:53 +09:00
parent 18a64279fd
commit 8298a4bae5

View File

@@ -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,