home to your local SPACEGIRL 馃挮
arimelody.space
1@import url("/admin/static/release-list-item.css");
2
3#track {
4 margin-bottom: 1em;
5 padding: .5em 1.5em 1.5em 1.5em;
6 display: flex;
7 flex-direction: row;
8 gap: 1.2em;
9
10 border-radius: 16px;
11 background-color: var(--bg-2);
12 box-shadow: var(--shadow-md);
13}
14
15.track-info {
16 width: 100%;
17 margin: 0;
18 flex-grow: 1;
19 display: flex;
20 flex-direction: column;
21}
22
23.attribute-header {
24 margin: 1em 0 .2em 0;
25 opacity: .5;
26}
27
28.track-title {
29 margin: 0;
30}
31
32#title {
33 width: calc(100% - .4em);
34 padding: .1em .2em;
35}
36
37.track-info textarea {
38 width: calc(100% - 1em);
39 padding: .5em;
40 resize: vertical;
41}
42
43.track-info input[type="text"],
44.track-info textarea {
45 font-weight: inherit;
46 font-family: inherit;
47 font-size: inherit;
48 background-color: var(--bg-0);
49 border: none;
50 border-radius: 4px;
51 outline: none;
52 color: inherit;
53}
54
55.track-actions {
56 margin-top: 1em;
57 display: flex;
58 gap: .5em;
59 flex-direction: row;
60 justify-content: right;
61}
62