diff --git a/package.json b/package.json index 3ab2af35..31e48d6e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "11.0.1", + "version": "11.1.1", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/partials/now/track-chart.liquid b/src/_includes/partials/now/track-chart.liquid index 8e403f2c..60425238 100644 --- a/src/_includes/partials/now/track-chart.liquid +++ b/src/_includes/partials/now/track-chart.liquid @@ -2,12 +2,12 @@
{% for item in data limit: 10 %} {%- assign percentage = item.plays | calculatePlayPercentage: mostPlayed -%} -
-
-
{{ forloop.index }}.
-
-
{{ item.title }}
-
+
+
+
{{ forloop.index }}.
+
+
{{ item.title }}
+
{{ item.artist }} • {{ item.plays }} plays
diff --git a/src/_includes/partials/now/tracks-recent.liquid b/src/_includes/partials/now/tracks-recent.liquid index 0ee102bc..3c6906bb 100644 --- a/src/_includes/partials/now/tracks-recent.liquid +++ b/src/_includes/partials/now/tracks-recent.liquid @@ -2,17 +2,17 @@
{% for item in data limit: 10 %} {% capture alt %}{{ item.track }} by {{ item.track }}{% endcapture %} -
-
+
+
{% image item.image, alt, '', 'lazy' %} -
-
{{ item.track }}
-
+
+
{{ item.track }}
+
-
+
{{ item.timestamp | date: "%B %-d, %-I:%M%p", "America/Los_Angeles" }}
diff --git a/src/assets/styles/components/track-chart.css b/src/assets/styles/components/track-chart.css index f7d3144a..5cb2672e 100644 --- a/src/assets/styles/components/track-chart.css +++ b/src/assets/styles/components/track-chart.css @@ -1,91 +1,88 @@ -.track__chart--item { - justify-content: space-between; +.track__chart { + & .item { + justify-content: space-between; - &:not(:last-of-type) { - margin-bottom: var(--sizing-md); + &:not(:last-of-type) { + margin-bottom: var(--sizing-md); + } + + & .progress-bar__wrapper { + max-width: 40%; + margin-left: var(--sizing-lg); + } + + & img { + border: 1px solid var(--accent-color); + border-radius: var(--rounded); + } + + & img, + & picture { + width: calc(var(--sizing-3xl) * 1.5); + height: calc(var(--sizing-3xl) * 1.5); + } + + & .meta { + justify-content: start; + gap: var(--sizing-md); + max-width: calc(70% - var(--sizing-lg)); + } + + & .meta-text { + display: flex; + flex-direction: column; + justify-content: start; + max-width: 80%; + } + + & .title { + font-weight: var(--font-weight-bold); + } + + & .title, + & .artists { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + } + + & .artists, + & .timestamp { + font-size: var(--font-size-sm); + line-height: var(--line-height-sm); + } + + & .timestamp { + margin-left: var(--sizing-lg); + text-align: right; + white-space: nowrap; + } + + & .presentation { + display: flex; + flex-direction: row; + max-width: calc(60% - var(--sizing-lg)); + } + + & .count { + margin-right: var(--sizing-sm); + } + + & .info { + max-width: calc(100% - var(--sizing-lg)); + } } - & .progress-bar__wrapper { - max-width: 40%; - margin-left: var(--sizing-lg); + & .item, + & .meta { + display: flex; + flex-direction: row; + align-items: center; } } -.track__chart--item, -.track__chart--meta { - display: flex; - flex-direction: row; - align-items: center; -} - -.track__chart--presentation { - display: flex; - flex-direction: row; - max-width: calc(60% - var(--sizing-lg)); -} - -.track__chart--count { - margin-right: var(--sizing-sm); -} - -.track__chart--info { - max-width: calc(100% - var(--sizing-lg)); -} - -.track__chart--title { - font-weight: var(--font-weight-bold); -} - -.track__chart--title, -.track__chart--artists { - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} - -.track__chart--artists, -.track__chart--timestamp { - font-size: var(--font-size-sm); - line-height: var(--line-height-sm); -} - -.track__chart--timestamp { - white-space: nowrap; -} - -.track__chart--item { - & img { - border: 1px solid var(--accent-color); - border-radius: var(--rounded); - } - - & img, - & picture { - width: calc(var(--sizing-3xl) * 1.5); - height: calc(var(--sizing-3xl) * 1.5); - } -} - -.track__chart--meta { - justify-content: start; - gap: var(--sizing-md); - max-width: calc(70% - var(--sizing-lg)); -} - -.track__chart--meta--text { - display: flex; - flex-direction: column; - justify-content: start; - max-width: 80%; -} - -.track__chart--timestamp { - margin-left: var(--sizing-lg); - text-align: right; -} - @media screen and (min-width: 768px) { - .track__chart--meta--text { + .track__chart .item .meta-text { max-width: 85%; } } \ No newline at end of file