2025-10-21 18:39:38 +01:00
|
|
|
.artist {
|
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
|
|
color: var(--fg-3);
|
|
|
|
|
background: var(--bg-2);
|
|
|
|
|
box-shadow: var(--shadow-md);
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: background .1s ease-out, color .1s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.artist:hover {
|
|
|
|
|
background: var(--bg-1);
|
|
|
|
|
text-decoration: hover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.artist .artist-avatar {
|
|
|
|
|
width: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
2025-10-21 23:22:57 +01:00
|
|
|
|
|
|
|
|
.artist .artist-name {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|