Some checks failed
Build and publish the docker image / build (push) Failing after 1m8s
Signed-off-by: ngn <ngn@ngn.tf>
37 lines
529 B
CSS
37 lines
529 B
CSS
#album-artwork {
|
|
width: 24rem;
|
|
border-radius: 3px;
|
|
box-shadow: 0 1px 1px #ddd;
|
|
}
|
|
|
|
#album-tracklist {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
flex-basis: 0;
|
|
flex-shrink: 0;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
#album-single-track {
|
|
display: grid;
|
|
grid-template-columns: 3rem 1fr;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#album-single-track p {
|
|
color: #ddd;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#album-single-track small {
|
|
font-size: 1.5rem;
|
|
color: #ccc;
|
|
}
|
|
|
|
#album-single-track:hover p {
|
|
text-decoration: underline;
|
|
}
|