This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/styles/components/music-chart.css
2024-09-10 21:21:47 -07:00

151 lines
No EOL
2.6 KiB
CSS

.music-chart {
margin-bottom: var(--spacing-base);
& ol {
padding-left: 0;
margin-top: 0;
& li:first-of-type {
margin-top: 0;
}
}
& .item {
display: flex;
flex-direction: column;
justify-content: start;
align-items: start;
&:not(:last-of-type) {
margin-bottom: var(--spacing-md);
}
& .progress-bar-wrapper {
margin-top: var(--spacing-sm);
max-width: 40%;
}
& img {
border: var(--border-default);
border-radius: var(--border-radius-slight);
width: calc(var(--sizing-3xl) * 1.5);
height: calc(var(--sizing-3xl) * 1.5);
}
& .presentation .info {
display: flex;
flex-direction: column;
gap: var(--spacing-sm);
}
& .meta,
& .presentation {
justify-content: start;
gap: var(--spacing-md);
}
& .meta {
display: flex;
flex-direction: row;
align-items: center;
}
& .meta-text {
display: flex;
flex-direction: column;
justify-content: start;
}
& .title {
font-weight: var(--font-weight-bold);
line-height: var(--line-height-md);
}
& .title,
& .subtext,
& .subtext p,
& .timestamp {
line-height: var(--line-height-md);
}
& .subtext,
& .timestamp {
font-size: var(--font-size-sm);
}
& .timestamp {
margin-top: var(--spacing-sm);
margin-left: 0;
}
}
&.grid {
display: grid;
gap: var(--spacing-sm);
grid-template-columns: repeat(2, 1fr);
margin-bottom: var(--spacing-base);
& .item .meta {
max-width: 80%;
& .title {
line-height: var(--line-height-sm);
}
& .subtext p {
margin: 0;
line-height: var(--line-height-sm);
}
}
}
}
@media screen and (min-width: 768px) {
.music-chart {
& ol {
list-style-position: outside;
}
& .meta,
& .presentation {
width: calc(80% - var(--sizing-lg));
}
& .item {
flex-direction: row;
align-items: center;
justify-content: space-between;
& .meta {
width: calc(75% - var(--sizing-lg));
}
& .meta-text {
max-width: 85%;
}
& .timestamp {
margin-left: var(--spacing-lg);
text-align: right;
white-space: nowrap;
}
& .info {
max-width: calc(75% - var(--sizing-lg));
}
& .progress-bar-wrapper {
margin-left: var(--spacing-lg);
}
}
&.grid {
grid-template-columns: repeat(3, 1fr);
& .item img {
width: calc(var(--sizing-3xl) * 2);
height: calc(var(--sizing-3xl) * 2);
}
}
}
}