feat: generic table styles

This commit is contained in:
Cory Dransfeldt 2024-01-14 10:24:30 -08:00
parent 3b74267d68
commit 326ebf7e29
No known key found for this signature in database
2 changed files with 42 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "4.9.1",
"version": "4.10.1",
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {

View file

@ -115,6 +115,47 @@ hr.large__spacing {
margin: 2rem 0 3rem;
}
/* tables */
table {
display: block;
overflow-x: auto;
width: 100%;
max-width: fit-content;
margin: 0 auto;
white-space: nowrap;
border-radius: var(--rounded-lg);
border: 1px solid var(--gray-light);
}
table a {
text-decoration: none;
}
table, th, td {
border-collapse: collapse;
}
:is(th, td):not(:last-child) {
border-right: 1px solid var(--gray-light);
}
th,
tr:not(:last-child) {
border-bottom: 1px solid var(--gray-light);
}
th, td {
padding: .375rem;
min-width: 4rem;
word-break: break-word;
}
th {
background-color: var(--gray-lighter);
font-weight: 700;
text-align: center;
}
/* header */
.main__title {
width: 100%;