SadPlayer/style.css

39 lines
557 B
CSS
Raw Normal View History

2025-07-31 23:05:14 +02:00
* {
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;
}