39 lines
557 B
CSS
39 lines
557 B
CSS
* {
|
|
background-color: #14141e;
|
|
color: #ebebeb;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
padding: 2rem;
|
|
max-width: 700px;
|
|
margin: auto;
|
|
}
|
|
#audio-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
}
|
|
.audio-item {
|
|
border: 1px solid #ccc;
|
|
border-radius: 8px;
|
|
padding: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
audio {
|
|
width: 100%;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
button {
|
|
display: inline-block;
|
|
padding: 0.15rem 1.25rem;
|
|
margin-bottom: 0.5rem;
|
|
border: white solid 1px;
|
|
border-radius: 30px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
} |