Spaces:
Running
Running
Create static/css/style.css
Browse files- static/css/style.css +46 -0
static/css/style.css
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.container {
|
2 |
+
max-width: 800px;
|
3 |
+
margin: 0 auto;
|
4 |
+
}
|
5 |
+
|
6 |
+
#player {
|
7 |
+
position: fixed;
|
8 |
+
top: -9999px;
|
9 |
+
left: -9999px;
|
10 |
+
}
|
11 |
+
|
12 |
+
.search-container {
|
13 |
+
background: #f8f9fa;
|
14 |
+
padding: 20px;
|
15 |
+
border-radius: 8px;
|
16 |
+
}
|
17 |
+
|
18 |
+
.song-item {
|
19 |
+
cursor: pointer;
|
20 |
+
padding: 10px;
|
21 |
+
margin: 5px 0;
|
22 |
+
background: #fff;
|
23 |
+
border: 1px solid #ddd;
|
24 |
+
border-radius: 4px;
|
25 |
+
transition: background-color 0.2s;
|
26 |
+
}
|
27 |
+
|
28 |
+
.song-item:hover {
|
29 |
+
background-color: #f0f0f0;
|
30 |
+
}
|
31 |
+
|
32 |
+
.controls {
|
33 |
+
background: #f8f9fa;
|
34 |
+
padding: 20px;
|
35 |
+
border-radius: 8px;
|
36 |
+
text-align: center;
|
37 |
+
}
|
38 |
+
|
39 |
+
#currentSongTitle {
|
40 |
+
font-size: 1.2rem;
|
41 |
+
color: #333;
|
42 |
+
}
|
43 |
+
|
44 |
+
.btn {
|
45 |
+
min-width: 100px;
|
46 |
+
}
|