home to your local SPACEGIRL 馃挮
arimelody.space
1.release {
2 margin-bottom: 1em;
3 padding: 1em;
4 display: flex;
5 flex-direction: row;
6 gap: 1em;
7
8 border-radius: 16px;
9 background: var(--bg-2);
10 box-shadow: var(--shadow-md);
11
12 transition: background .1s ease-out, color .1s ease-out;
13}
14
15.release h3,
16.release p {
17 margin: 0;
18 overflow: hidden;
19 white-space: nowrap;
20 text-overflow: ellipsis;
21}
22
23.release .release-artwork {
24 margin: auto 0;
25 width: 96px;
26
27 display: flex;
28 justify-content: center;
29 align-items: center;
30 border-radius: 4px;
31 overflow: hidden;
32 box-shadow: var(--shadow-sm);
33}
34
35.release .release-artwork img {
36 width: 100%;
37 aspect-ratio: 1;
38}
39
40.release .release-info {
41 max-width: calc(100% - 96px - 1em);
42}
43
44.release .release-title small {
45 opacity: .75;
46}
47
48.release .release-links {
49 margin: .5em 0;
50 padding: 0;
51 display: flex;
52 flex-direction: row;
53 list-style: none;
54 flex-wrap: wrap;
55 gap: .5em;
56}
57
58.release .release-actions {
59 margin-top: .5em;
60 user-select: none;
61 color: var(--fg-3);
62}
63
64.release .release-actions a {
65 margin-right: .3em;
66 padding: .3em .5em;
67 display: inline-block;
68
69 border-radius: 4px;
70 background: var(--bg-3);
71 box-shadow: var(--shadow-sm);
72
73 transition: color .1s ease-out, background .1s ease-out;
74}
75
76.release .release-actions a:hover {
77 background: var(--bg-0);
78 color: var(--fg-3);
79 text-decoration: none;
80}