riddhiman commited on
Commit
2ff0cc4
·
verified ·
1 Parent(s): 3f1062f

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +37 -0
style.css ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body, input, button {
2
+ background-color: #333;
3
+ color: white;
4
+ font-family: Arial, sans-serif;
5
+ }
6
+
7
+ #app {
8
+ width: 90%;
9
+ max-width: 600px;
10
+ margin: auto;
11
+ text-align: center;
12
+ }
13
+
14
+ #search {
15
+ width: 100%;
16
+ padding: 10px;
17
+ margin-bottom: 20px;
18
+ }
19
+
20
+ #music-list div {
21
+ cursor: pointer;
22
+ padding: 10px;
23
+ border-bottom: 1px solid #555;
24
+ }
25
+
26
+ #music-list div:hover {
27
+ background-color: #555;
28
+ }
29
+
30
+ button {
31
+ padding: 10px 20px;
32
+ cursor: pointer;
33
+ }
34
+
35
+ #loading {
36
+ color: #aaa;
37
+ }