Skip to content

Commit

Permalink
Updated CSS for tables
Browse files Browse the repository at this point in the history
  • Loading branch information
rbesenczi committed Jul 5, 2024
1 parent dfe7a92 commit 6ca32f9
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,18 @@ button {
padding: 5px 10px;
}

table :is(td, th) {
border: 1px solid black;
padding: 0.5em;
background-color:antiquewhite;
}
table :is(td,th) {
padding:0.5em;
}

table thead {
background-color: #e9e8ff;
}

tr:nth-child(even) {
background-color: #fff0e8;
}

table tr {
border: 1px solid white;
}

0 comments on commit 6ca32f9

Please sign in to comment.