31 lines
571 B
CSS
31 lines
571 B
CSS
.artist {
|
|
padding: .5em;
|
|
|
|
color: var(--fg-3);
|
|
background-color: var(--bg-2);
|
|
box-shadow: var(--shadow-md);
|
|
border-radius: 16px;
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
transition-property: background, color, transform;
|
|
transition-duration: .1s;
|
|
transition-timing-function: ease-out;
|
|
}
|
|
|
|
.artist:hover {
|
|
background-color: var(--bg-1);
|
|
text-decoration: hover;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.artist .artist-avatar {
|
|
width: 100%;
|
|
object-fit: cover;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.artist .artist-name {
|
|
display: block;
|
|
}
|