Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -140,39 +140,28 @@ input[type="range"]::-moz-range-thumb:hover {
|
|
140 |
}
|
141 |
.audio-controls button {
|
142 |
margin: 0 10px;
|
143 |
-
padding:
|
144 |
border-radius: 50%;
|
145 |
-
width:
|
146 |
-
height:
|
147 |
display: flex;
|
148 |
align-items: center;
|
149 |
justify-content: center;
|
150 |
transition: background 0.3s, transform 0.2s;
|
|
|
151 |
}
|
152 |
.audio-controls button:hover {
|
153 |
background: linear-gradient(135deg, #feb47b, #ff7e5f);
|
154 |
transform: scale(1.1);
|
155 |
}
|
156 |
-
.audio-controls
|
157 |
-
font-size:
|
158 |
}
|
159 |
-
.audio-controls .
|
160 |
-
|
161 |
-
}
|
162 |
-
.audio-controls .volume-icon::after {
|
163 |
-
content: '';
|
164 |
-
position: absolute;
|
165 |
-
top: 50%;
|
166 |
-
left: 50%;
|
167 |
-
transform: translate(-50%, -50%);
|
168 |
-
width: 10px;
|
169 |
-
height: 10px;
|
170 |
-
background: linear-gradient(135deg, #ff7e5f, #feb47b);
|
171 |
-
border-radius: 50%;
|
172 |
-
transition: opacity 0.3s;
|
173 |
}
|
174 |
-
.audio-controls .volume-icon
|
175 |
-
|
176 |
}
|
177 |
"""
|
178 |
|
|
|
140 |
}
|
141 |
.audio-controls button {
|
142 |
margin: 0 10px;
|
143 |
+
padding: 15px;
|
144 |
border-radius: 50%;
|
145 |
+
width: 50px;
|
146 |
+
height: 50px;
|
147 |
display: flex;
|
148 |
align-items: center;
|
149 |
justify-content: center;
|
150 |
transition: background 0.3s, transform 0.2s;
|
151 |
+
font-size: 20px;
|
152 |
}
|
153 |
.audio-controls button:hover {
|
154 |
background: linear-gradient(135deg, #feb47b, #ff7e5f);
|
155 |
transform: scale(1.1);
|
156 |
}
|
157 |
+
.audio-controls .play-icon {
|
158 |
+
font-size: 24px;
|
159 |
}
|
160 |
+
.audio-controls .pause-icon {
|
161 |
+
font-size: 24px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
}
|
163 |
+
.audio-controls .volume-icon {
|
164 |
+
font-size: 24px;
|
165 |
}
|
166 |
"""
|
167 |
|