shreyask commited on
Commit
7b6759d
·
verified ·
1 Parent(s): 9966ac0

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +8 -7
index.html CHANGED
@@ -195,14 +195,15 @@
195
 
196
  /* ── Mic + waveform ── */
197
  .controls {
198
- display: flex; align-items: center; justify-content: center;
199
- gap: 1rem; margin-bottom: 1rem;
200
  }
201
  .mic-btn {
202
- width: 56px; height: 56px; border-radius: 50%;
203
- border: 2px solid #E9E2CB; background: rgba(255,255,255,0.7);
204
  cursor: pointer; display: flex; align-items: center; justify-content: center;
205
  transition: all 0.2s;
 
206
  }
207
  .mic-btn:hover { border-color: #FF8205; background: rgba(255,130,5,0.05); }
208
  .mic-btn.listening {
@@ -213,12 +214,12 @@
213
  .mic-btn.disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
214
  @keyframes ring {
215
  0% { box-shadow: 0 0 0 0 rgba(255,130,5,0.3); }
216
- 100% { box-shadow: 0 0 0 16px rgba(255,130,5,0); }
217
  }
218
- .mic-btn svg { width: 24px; height: 24px; fill: #888; transition: fill 0.2s; }
219
  .mic-btn.listening svg { fill: #FF8205; }
220
 
221
- .waveform { flex: 1; height: 44px; max-width: 400px; }
222
  .waveform canvas {
223
  width: 100%; height: 100%; display: block; border-radius: 4px;
224
  border: 1px solid #E9E2CB; background: rgba(255,255,255,0.4);
 
195
 
196
  /* ── Mic + waveform ── */
197
  .controls {
198
+ display: flex; flex-direction: column; align-items: center;
199
+ gap: 0.75rem; margin-bottom: 1.25rem;
200
  }
201
  .mic-btn {
202
+ width: 88px; height: 88px; border-radius: 50%;
203
+ border: 3px solid #E9E2CB; background: rgba(255,255,255,0.7);
204
  cursor: pointer; display: flex; align-items: center; justify-content: center;
205
  transition: all 0.2s;
206
+ box-shadow: 0 4px 16px rgba(0,0,0,0.06);
207
  }
208
  .mic-btn:hover { border-color: #FF8205; background: rgba(255,130,5,0.05); }
209
  .mic-btn.listening {
 
214
  .mic-btn.disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
215
  @keyframes ring {
216
  0% { box-shadow: 0 0 0 0 rgba(255,130,5,0.3); }
217
+ 100% { box-shadow: 0 0 0 20px rgba(255,130,5,0); }
218
  }
219
+ .mic-btn svg { width: 36px; height: 36px; fill: #999; transition: fill 0.2s; }
220
  .mic-btn.listening svg { fill: #FF8205; }
221
 
222
+ .waveform { width: 100%; max-width: 480px; height: 44px; }
223
  .waveform canvas {
224
  width: 100%; height: 100%; display: block; border-radius: 4px;
225
  border: 1px solid #E9E2CB; background: rgba(255,255,255,0.4);