Musicsitetest / style.css
riddhiman's picture
Create style.css
2ff0cc4 verified
raw
history blame
508 Bytes
body, input, button {
background-color: #333;
color: white;
font-family: Arial, sans-serif;
}
#app {
width: 90%;
max-width: 600px;
margin: auto;
text-align: center;
}
#search {
width: 100%;
padding: 10px;
margin-bottom: 20px;
}
#music-list div {
cursor: pointer;
padding: 10px;
border-bottom: 1px solid #555;
}
#music-list div:hover {
background-color: #555;
}
button {
padding: 10px 20px;
cursor: pointer;
}
#loading {
color: #aaa;
}