20 lines
269 B
CSS
20 lines
269 B
CSS
.player-container {
|
|
width: 100%;
|
|
height: 50px;
|
|
background-color: #d54242;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#audio-player {
|
|
width: 80%;
|
|
}
|
|
|
|
#audio-controls {
|
|
display: flex;
|
|
}
|
|
|
|
#audio-controls button {
|
|
margin-right: 10px;
|
|
} |