msc / static /css /style.css
arevedudaa's picture
Create static/css/style.css
bc8999f verified
raw
history blame contribute delete
662 Bytes
.container {
max-width: 800px;
margin: 0 auto;
}
#player {
position: fixed;
top: -9999px;
left: -9999px;
}
.search-container {
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
}
.song-item {
cursor: pointer;
padding: 10px;
margin: 5px 0;
background: #fff;
border: 1px solid #ddd;
border-radius: 4px;
transition: background-color 0.2s;
}
.song-item:hover {
background-color: #f0f0f0;
}
.controls {
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
text-align: center;
}
#currentSongTitle {
font-size: 1.2rem;
color: #333;
}
.btn {
min-width: 100px;
}