arimelody-web/admin/static/artists.css

28 lines
465 B
CSS
Raw Permalink Normal View History

.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;
}