phoneassistant/static/css/table.css
Elizabeth Hunt 18a945aab9
Some checks failed
continuous-integration/drone/push Build is failing
initial commit by simponic-infra
2025-01-12 23:09:34 -08:00

29 lines
454 B
CSS

@import "/static/css/colors.css";
table {
width: auto;
border-collapse: collapse;
border: 1px solid var(--border-color);
}
th,
td {
padding: 12px 20px;
text-align: center;
border-bottom: 1px solid var(--border-color);
}
th,
thead {
background-color: var(--background-color-2);
}
tbody tr:nth-child(odd) {
background-color: var(--background-color);
color: var(--text-color);
}
tbody tr {
transition: background-color 0.3s ease;
}