fisch/static/css/overview.css

75 lines
1.3 KiB
CSS
Raw Normal View History

2025-03-04 20:18:55 +01:00
main {
display: flex;
justify-content: center;
2025-03-18 21:19:18 +01:00
align-items: start;
2025-03-04 20:18:55 +01:00
padding-top: 2em;
padding-bottom: 2em;
}
2025-03-18 21:19:18 +01:00
a.table-header-btn, a.table-header-btn:visited {
color: var(--link);
border: 2px solid var(--link);
padding: .5em;
border-radius: 4px;
}
2025-03-04 20:18:55 +01:00
table {
border-collapse: collapse;
width: 1200px;
max-width: 100%;
}
2025-03-18 21:19:18 +01:00
table tr:first-child {
border: none;
background-color: transparent !important;
}
table tr:nth-child(2n + 1) {
background-color: var(--bg-border);
}
table tr {
2025-03-04 20:18:55 +01:00
border: 2px solid var(--bg-border);
2025-03-18 21:19:18 +01:00
border-top: none;
border-bottom: none;
}
table tr:nth-child(2) {
background-color: var(--fg);
color: var(--bg-light);
border: 2px solid var(--fg);
border-bottom: none;
font-size: 1.2em;
}
table tr:last-child {
border: 2px solid var(--bg-border);
border-top: none;
}
table tr :is(th, td) {
padding: 10px;
text-align: left;
2025-03-04 20:18:55 +01:00
}
table tr td:last-child > div.action-container {
display: flex;
align-items: baseline;
2025-03-18 21:19:18 +01:00
justify-content: start;
gap: .1em;
2025-03-04 20:18:55 +01:00
}
table tr td:last-child form {
display: flex;
flex-direction: row;
align-items: center;
height: max-content;
}
table tr td:last-child form button {
background-color: transparent;
border: none;
cursor: pointer;
color: var(--fg);
2025-03-18 21:19:18 +01:00
font-size: 1em;
2025-03-04 20:18:55 +01:00
}