2024-08-31 18:29:57 +00:00
|
|
|
@import url("/admin/static/release-list-item.css");
|
|
|
|
|
2024-08-05 00:23:17 +00:00
|
|
|
.create-btn {
|
|
|
|
background: #c4ff6a;
|
|
|
|
padding: .5em .8em;
|
|
|
|
border-radius: .5em;
|
|
|
|
border: 1px solid #84b141;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.create-btn:hover {
|
|
|
|
background: #fff;
|
|
|
|
border-color: #d0d0d0;
|
|
|
|
text-decoration: inherit;
|
|
|
|
}
|
|
|
|
.create-btn:active {
|
|
|
|
background: #d0d0d0;
|
|
|
|
border-color: #808080;
|
|
|
|
text-decoration: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist {
|
|
|
|
margin-bottom: .5em;
|
|
|
|
padding: .5em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
gap: .5em;
|
|
|
|
|
|
|
|
border-radius: .5em;
|
|
|
|
background: #f8f8f8f8;
|
|
|
|
border: 1px solid #808080;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist:hover {
|
|
|
|
text-decoration: hover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist-avatar {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
object-fit: cover;
|
|
|
|
border-radius: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.track {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
padding: 1em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: .5em;
|
|
|
|
|
|
|
|
border-radius: .5em;
|
|
|
|
background: #f8f8f8f8;
|
|
|
|
border: 1px solid #808080;
|
|
|
|
}
|
|
|
|
|
2024-08-31 14:25:44 +00:00
|
|
|
.track p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2024-08-05 00:23:17 +00:00
|
|
|
.card h2.track-title {
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.track-id {
|
|
|
|
width: fit-content;
|
|
|
|
font-family: "Monaspace Argon", monospace;
|
|
|
|
font-size: .8em;
|
|
|
|
font-style: italic;
|
|
|
|
line-height: 1em;
|
|
|
|
user-select: all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.track-album {
|
|
|
|
margin-left: auto;
|
|
|
|
font-style: italic;
|
|
|
|
font-size: .75em;
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.track-album.empty {
|
|
|
|
color: #ff2020;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.track-description {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.track-lyrics {
|
|
|
|
max-height: 10em;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.track .empty {
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|