ProxmoxAAS-Dashboard/css/table.css
Arthur Lu 58862f32a5 fix stlye sheet scoping,
imrpove some styling

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2023-04-05 23:35:11 +00:00

28 lines
427 B
CSS

table {
padding: 10px;
border-collapse: collapse;
width: 100%;
text-align: left;
}
table thead {
background-color: var(--accent-bkg-color);
color: var(--accent-txt-color);
}
table tbody {
background-color: var(--content-bkg-color);
color: var(--content-txt-color);
}
table tbody tr:nth-child(even) {
background-color: #ddd;
}
table tbody tr:hover {
background-color: #aaa;
}
table th, table td {
padding: 5px;
}