rename buttons.css to button.css,

add table styling and prepare for better table generation

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
2023-04-05 22:29:15 +00:00
parent 8b9cbec5fb
commit f1dc99dedd
9 changed files with 46 additions and 18 deletions

21
css/table.css Normal file
View File

@@ -0,0 +1,21 @@
table {
padding: 10px;
border-collapse: collapse;
border: 1px solid var(--content-txt-color);
}
tr {
background-color: white;
}
tr:nth-child(even) {
background-color: #ddd;
}
tr:hover {
background-color: #aaa;
}
td {
padding: 5px;
}