VSPAN commited on
Commit
d8c84a1
·
verified ·
1 Parent(s): 2fd027e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -21
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: 10px;
144
  border-radius: 50%;
145
- width: 40px;
146
- height: 40px;
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 i {
157
- font-size: 18px;
158
  }
159
- .audio-controls .volume-icon {
160
- position: relative;
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:hover::after {
175
- opacity: 0;
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