59 lines
949 B
CSS

#root {
margin: 0 auto;
padding: 0;
text-align: center;
}
.photoContainer {
width: clamp(5vmin, 15vmin, 25vmin);
height: clamp(5vmin, 15vmin, 25vmin);
background-image: url("/prettyplayer-logo.svg");
}
.photo {
width: clamp(5vmin, 15vmin, 25vmin);
height: clamp(5vmin, 15vmin, 25vmin);
}
.photo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.gallery {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.player {
background: rgba(0,0,0,0.5);
position: sticky;
width: 100%;
bottom:0;
transition: height 2s;
}
.album-title {
font-size: larger;
}
.bold-title {
font-weight: bold;
}
.expander {
position: absolute;
height: 8vmin;
width: 8vmin;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 50%;
margin-top: 1vmin;
margin-left: 5vmin;
display: flex;
justify-content: center;
align-items: center;
font-size: 500%;
}