feat: add album handler

Serves a page including the album name, artist, track list, and credits.
Each of the tracks have links to the lyrics page, provided there is one
available.
This commit is contained in:
Jackson Taylor
2023-06-30 12:27:31 -04:00
parent ab19250c66
commit 273176a57c
4 changed files with 185 additions and 0 deletions

View File

@ -105,6 +105,7 @@ a {
width: 20rem;
border-radius: 3px;
box-shadow: 0 1px 1px #ddd;
max-width: 200px;
}
#container {
@ -130,6 +131,15 @@ a {
color: #1e1e1e;
}
#album-tracklist{
display: flex;
flex-direction: column;
gap: 1rem;
flex-basis: 0;
flex-shrink: 0;
flex-grow: 1;
}
#credits p {
font-size: 1.3rem;
padding: 0.5rem;