2024-03-06 17:32:10 +01:00
|
|
|
#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;
|
|
|
|
}
|
2024-05-02 13:09:09 +01:00
|
|
|
|
|
|
|
#album-single-track {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 3rem 1fr;
|
|
|
|
gap: 1rem;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#album-single-track p {
|
|
|
|
color: #181d31;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
#album-single-track small {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
#album-single-track:hover p {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|