Skip to content

Commit

Permalink
feat: Add table styling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Starciad committed Jan 23, 2024
1 parent 33e630a commit c6185e2
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions styles/elements/table.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/* GENERAL */
table {
padding: 16px;

width: 100%;

border-radius: 8px;
border-width: 2px;
border-style: solid;
border-color: black;

margin: 12px;

background-color: #0d1117;

font-weight: 500;
}

/* ELEMENTS */
th {
padding: 16px;

border-radius: 8px;
border-width: 2px;
border-style: solid;
border-color: black;

background-color: #0a0d12;
}

td {
padding: 8px;

border-radius: 8px;
border-width: 2px;
border-style: solid;
border-color: black;

background-color: #161b22;
}

0 comments on commit c6185e2

Please sign in to comment.