chore: table styles + album table order

This commit is contained in:
Cory Dransfeldt 2024-07-25 17:38:49 -07:00
parent 3f097c927f
commit 8ff7947017
No known key found for this signature in database
6 changed files with 39 additions and 18 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.12.12", "version": "20.12.13",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.12.12", "version": "20.12.13",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.12.12", "version": "20.12.13",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,10 +1,10 @@
html html
body { body {
color: var(--text-color); color: var(--text-color);
background: var(--background-color);
font-family: var(--font-mono); font-family: var(--font-mono);
letter-spacing: -.05rem; letter-spacing: -.05rem;
word-spacing: -.125rem; word-spacing: -.125rem;
background: var(--background-color);
scrollbar-width: thin; scrollbar-width: thin;
scrollbar-color: var(--accent-color) var(--gray-light); scrollbar-color: var(--accent-color) var(--gray-light);
} }
@ -261,6 +261,7 @@ table {
width: 100%; width: 100%;
border: 1px solid var(--gray-light); border: 1px solid var(--gray-light);
white-space: nowrap; white-space: nowrap;
caption-side: bottom;
} }
table, table,
@ -285,10 +286,35 @@ td {
min-width: max-content; min-width: max-content;
word-break: break-word; word-break: break-word;
width: 100%; width: 100%;
&:first-child {
position: sticky;
left: 0;
border-inline-end: none;
&::after {
content: '';
position: absolute;
inset-block-start: 0;
inset-inline-end: 0;
width: 1px;
height: 100%;
background: var(--gray-light);
}
}
} }
td { td {
min-width: calc(var(--sizing-3xl) * 2); min-width: calc(var(--sizing-3xl) * 2);
&:first-child {
background-color: var(--background-color);
}
}
td::first-of-type,
:where(thead, tfoot) th:nth-child(2) {
border-inline-start: none;
} }
th { th {

View file

@ -29,7 +29,7 @@
--black: #000; --black: #000;
--gray-light: var(--gray-200); --gray-light: var(--gray-200);
--gray-lighter: var(--gray-50); --gray-lighter: var(--gray-100);
--gray-dark: var(--gray-950); --gray-dark: var(--gray-950);
/* base theme */ /* base theme */
@ -129,8 +129,8 @@
--background-color-inverted: var(--color-lightest); --background-color-inverted: var(--color-lightest);
--accent-color: var(--blue-400); --accent-color: var(--blue-400);
--accent-color-hover: var(--blue-200); --accent-color-hover: var(--blue-200);
--gray-light: var(--gray-900); --gray-light: var(--gray-800);
--gray-lighter: var(--gray-950); --gray-lighter: var(--gray-900);
--gray-dark: var(--gray-200); --gray-dark: var(--gray-200);
--brand-github: #f5f5f5; --brand-github: #f5f5f5;
} }
@ -145,7 +145,7 @@
--accent-color: var(--blue-600); --accent-color: var(--blue-600);
--accent-color-hover: var(--blue-800); --accent-color-hover: var(--blue-800);
--gray-light: var(--gray-200); --gray-light: var(--gray-200);
--gray-lighter: var(--gray-50); --gray-lighter: var(--gray-100);
--gray-dark: var(--gray-950); --gray-dark: var(--gray-950);
--brand-github: #333; --brand-github: #333;
} }
@ -158,8 +158,8 @@
--background-color-inverted: var(--color-lightest); --background-color-inverted: var(--color-lightest);
--accent-color: var(--blue-400); --accent-color: var(--blue-400);
--accent-color-hover: var(--blue-200); --accent-color-hover: var(--blue-200);
--gray-light: var(--gray-900); --gray-light: var(--gray-800);
--gray-lighter: var(--gray-950); --gray-lighter: var(--gray-900);
--gray-dark: var(--gray-200); --gray-dark: var(--gray-200);
--brand-github: #f5f5f5; --brand-github: #f5f5f5;
} }

View file

@ -71,11 +71,6 @@
} }
} }
} }
table th:first-of-type,
table td:first-of-type {
width: calc(var(--sizing-3xl) * 6);
}
} }
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {

View file

@ -64,15 +64,15 @@ schema: artist
{%- endif -%} {%- endif -%}
<table> <table>
<tr> <tr>
<th>Year</th> <th>Album</th>
<th>Title</th>
<th>Plays</th> <th>Plays</th>
<th>Year</th>
</tr> </tr>
{% for album in artist.albums %} {% for album in artist.albums %}
<tr> <tr>
<td>{{ album.release_year }}</td>
<td>{{ album.name }}</td> <td>{{ album.name }}</td>
<td>{{ album.total_plays }}</td> <td>{{ album.total_plays }}</td>
<td>{{ album.release_year }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>