make individual artist pages more consistent with market artists

This commit is contained in:
2026-01-02 16:45:46 -08:00
parent 3e9875f052
commit e5102114cd
3 changed files with 16 additions and 5 deletions

View File

@ -41,9 +41,17 @@
border-radius: 1rem;
}
@media (max-width: 1050px) {
.artist img {
border-radius: 1rem 1rem 0 0;
border-bottom: .25rem solid var(--color-accent);
}
}
.artist h3 {
grid-area: h3;
text-transform: uppercase;
line-height: 2rem;
}
.artist:nth-child(odd) h3 {
@ -55,6 +63,12 @@
text-align: right;
}
@media (max-width: 1050px) {
.artist:nth-child(n) h3 {
padding: 0;
}
}
.description {
grid-area: desc;
background-color: var(--color-bg-alt);
@ -70,10 +84,6 @@
}
@media (max-width: 1050px) {
.artist:nth-child(n) h3 {
padding: 1rem 0 0;
}
.artist:nth-child(odd) .description {
margin-left: .625rem;
}