feat: generic table styles
This commit is contained in:
parent
3b74267d68
commit
326ebf7e29
2 changed files with 42 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"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.",
|
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -115,6 +115,47 @@ hr.large__spacing {
|
||||||
margin: 2rem 0 3rem;
|
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 */
|
/* header */
|
||||||
.main__title {
|
.main__title {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
Reference in a new issue