home to your local SPACEGIRL 馃挮
arimelody.space
1.artist {
2 padding: .5em;
3
4 color: var(--fg-3);
5 background: var(--bg-2);
6 box-shadow: var(--shadow-md);
7 border-radius: 16px;
8 text-align: center;
9
10 cursor: pointer;
11 transition: background .1s ease-out, color .1s ease-out;
12}
13
14.artist:hover {
15 background: var(--bg-1);
16 text-decoration: hover;
17}
18
19.artist .artist-avatar {
20 width: 100%;
21 object-fit: cover;
22 border-radius: 8px;
23}
24
25.artist .artist-name {
26 display: block;
27}