@import url("/admin/static/release-list-item.css"); .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-avatar { width: 100%; object-fit: cover; border-radius: 8px; } .track { margin-bottom: 1em; padding: 1em; display: flex; flex-direction: column; gap: .5em; border-radius: 8px; background: #f8f8f8f8; border: 1px solid #808080; transition: background .1s ease-out, color .1s ease-out; } .track p { margin: 0; } .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; }