Spaces:
Sleeping
Sleeping
File size: 858 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 31 32 33 34 35 36 37 38 39 40 |
/* style.css */
.audio-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
background-color: #2caaf3
}
.audio-player {
width: 300px;
margin: 15px;
border: 1px solid #ccc;
padding: 15px;
border-radius: 8px;
text-align: center;
background-color: #0af32d; /* Light background color */
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}
.audio-player:nth-child(odd) {
background-color: #c71a82; /* Alternating background */
}
.audio-image {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 8px;
}
.audio-info {
margin-top: 10px;
}
/* Hover effect on the audio player */
.audio-player:hover {
background-color: #fcfbf9;
cursor: pointer;
}
|