Spaces:
Sleeping
Sleeping
File size: 569 Bytes
b0dd51d |
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 30 |
/* style.css */
.audio-player {
background-color: var(--secondary-color);
background-image: url("path/to/subtle-pattern.png"); /* Optional */
border-radius: 15px;
padding: 30px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}
.player-controls {
display: flex;
justify-content: center;
width: 100%;
margin-bottom: 15px;
}
.player-controls button {
/* Style your buttons */
}
.song-info {
text-align: center;
}
.album-cover {
width: 150px;
height: 150px;
margin-bottom: 10px;
}
|