Skip to content

Commit

Permalink
Adding styling for tables. (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
samueleresca authored Nov 13, 2023
1 parent b3a6a5c commit 10b5201
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions theme/src/main/assets/assets/stylesheets/pekko-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,16 @@ pre:hover .snippet-button.go-to-source::before {
a.snippet-button.go-to-source:hover::before, .snippet-button.go-to-source:active::before {
color: #ff9100;
}

/* style for tables */
tbody th {
font-weight: bold;
}

tbody th, tbody td {
padding: 5px;
}

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

0 comments on commit 10b5201

Please sign in to comment.