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:
21
css/table.css
Normal file
21
css/table.css
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user