Spaces:
Paused
Paused
File size: 556 Bytes
1346bcc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | body {
padding: 20px;
}
#player {
width: 100%;
}
/* ocultar imagen si songSelect es none */
#songImage {
display: block;
margin-left: auto;
margin-right: auto;
/*margen superior */
margin-top: 20px;
width: 25%;
border-radius: 5%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
object-fit: cover;
object-position: center center;
aspect-ratio: 1/1;
display: none;
/* hide the image by default */
}
#songImage[songSelect="none"] {
display: none;
/* hide the image when songSelect is "none" */
} |