tables-style #5

Merged
aitzol merged 2 commits from tables-style into main 2024-12-19 22:54:00 +01:00
3 changed files with 12 additions and 0 deletions

View File

@ -19,6 +19,7 @@
- Update chrono from 0.4.0 to 0.4.31
- Update scheduled-thread-pool from 0.2.6 to 0.2.7
- Change blockquote color to `lightpurple`
- Some colour has been added to the tables to make them more visible
### Fixed

View File

@ -0,0 +1,10 @@
/* tables */
table, td, th, tr {
border: 1px dotted $lightpurple;
}
table {
border-collapse: collapse;
}
tr:nth-child(even){background-color: $gray;}

View File

@ -12,3 +12,4 @@
@import "header";
@import "article";
@import "forms";
@import "tables"