<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body.album {
    background-image: url(2.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    padding-bottom: 200px;
}
 
.album-cover-art {
    position: relative;
    left: 20%;
    margin-top: 1rem;
    width: 60%;
}
 
.album-view-details {
    position: relative;
    top: 1.5rem;
    padding: 1rem;
}
 
.album-view-details .album-view-title {
    font-weight: 300;
    font-size: 2rem;
}
 
.album-view-details .album-view-artist {
    font-weight: 300;
    font-size: 1.5rem;
}
 
.album-view-details .album-view-release-info {
    font-weight: 300;
    font-size: 0.75rem;
}

.album-view-song-list {
    width: 90%;
    margin: 1.5rem auto;
    font-weight: 300;
    font-size: 0.75em;
    border-collapse: collapse;
}
 
.album-view-song-item {
    /*height: 3rem;*/
    /* #1 */
    /*border-bottom: 1px solid rgba(255,255,255,0.5);*/
}
 
.song-item-number {
    width: 5%;
    min-width: 30px;
}
 
.song-item-title {
    width: 85%;
}
 
.song-item-duration {
    width: 5%;
}

.album-song-button {
    text-align: center;
    font-size: 20px;
    background-color: white;
    color: rgb(210, 40, 123);
    border-radius: 50% 50%;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 43px;
}
 
.album-song-button:hover {
    cursor: pointer;
    color: white;
    background-color: rgb(210, 40, 123);
}
 
.album-song-button span {
    line-height: 28px;
}

 /* Centered text looks better on smaller devices */
@media (max-width: 640px) and (min-width: 320px) {
    .album-view-details {
        text-align: center;
     }
     
     .album-view-title {
        margin-top: 0;   
     }
}
 
@media (max-width: 1024px) and (min-width: 320px) {
    .album-view-song-list {
        position: relative;
        top: 1rem;
        width: 80%;
        margin: auto;
     }
}
</pre></body></html>