File size: 8,840 Bytes
0e1717f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Audio Select UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #111314;
    border-radius: 0;
    box-shadow: none;
    color: #EDEDED;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 110px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 42px;
    letter-spacing: 0.5px;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .icon {
    width: 48px;
    height: 48px;
  }

  /* Top app bar */
  .app-bar {
    position: absolute;
    top: 110px;
    left: 0;
    width: 1080px;
    height: 140px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: #DADADA;
  }
  .app-bar .left {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .app-bar .right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 34px;
    padding-right: 24px;
  }

  /* Content card */
  .content-card {
    position: absolute;
    top: 280px;
    left: 40px;
    width: 1000px;
    height: 460px;
    background: #171a1c;
    border-radius: 42px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    padding: 48px;
    color: #bdbdbd;
  }
  .content-card .title {
    font-size: 64px;
    font-weight: 600;
    color: #BDBDBD;
    margin-bottom: 16px;
  }
  .content-card .subtitle {
    font-size: 34px;
    color: #889096;
  }

  /* Wave area */
  .wave-area {
    position: absolute;
    top: 860px;
    left: 40px;
    width: 1000px;
    height: 520px;
    border-radius: 40px;
    background: #141618;
    overflow: hidden;
  }
  .wave-center-line {
    position: absolute;
    left: 380px;
    top: 90px;
    width: 4px;
    height: 340px;
    background: #30363b;
    border-radius: 2px;
  }
  .wave-bars {
    position: absolute;
    bottom: 70px;
    left: 120px;
    display: flex;
    gap: 22px;
    align-items: flex-end;
  }
  .wave-bars span {
    width: 16px;
    height: 10px;
    background: #2f363b;
    border-radius: 6px;
  }
  .wave-bars span.mid { height: 46px; background: #3a4248; }
  .wave-bars span.tall { height: 86px; background: #3f474e; }
  .wave-bars span.dot {
    width: 8px; height: 8px; border-radius: 50%; background: #2f363b; margin-bottom: 6px;
  }

  /* Bottom sheet */
  .bottom-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1080px;
    height: 980px;
    background: #252b30;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
    box-shadow: 0 -6px 16px rgba(0,0,0,0.4);
  }
  .sheet-header {
    height: 160px;
    display: flex;
    align-items: center;
    padding: 0 36px;
    color: #EDEDED;
    font-size: 56px;
    font-weight: 600;
    gap: 24px;
  }
  .sheet-body {
    padding: 10px 40px 160px;
  }
  .option {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 34px 0;
    color: #EDEDED;
  }
  .radio {
    width: 48px; height: 48px; border-radius: 50%;
    border: 4px solid #8AB4F8;
    display: inline-flex; align-items: center; justify-content: center;
    box-sizing: border-box;
  }
  .radio .dot {
    width: 22px; height: 22px; background: #8AB4F8; border-radius: 50%;
  }
  .radio.unchecked {
    border-color: #7a848b;
  }
  .radio.unchecked .dot { display: none; }
  .option .texts { display: flex; flex-direction: column; }
  .option .label { font-size: 46px; line-height: 1.2; }
  .option .helper { font-size: 34px; color: #9aa3aa; margin-top: 6px; }

  .next-btn {
    position: absolute;
    right: 40px;
    bottom: 120px;
    width: 180px;
    height: 110px;
    background: #8AB4F8;
    color: #0a0d10;
    border-radius: 26px;
    display: flex; align-items: center; justify-content: center;
    font-size: 46px; font-weight: 600;
  }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 14px;
    background: #ffffff;
    opacity: 0.9;
    border-radius: 7px;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status Bar -->
  <div class="status-bar">
    <div>8:48</div>
    <div class="status-icons">
      <!-- Wi-Fi icon -->
      <svg class="icon" viewBox="0 0 48 48">
        <path d="M6 18 C18 10,30 10,42 18" stroke="#FFFFFF" stroke-width="4" fill="none"/>
        <path d="M12 26 C20 21,28 21,36 26" stroke="#FFFFFF" stroke-width="4" fill="none"/>
        <circle cx="24" cy="34" r="4" fill="#FFFFFF"></circle>
      </svg>
      <!-- Battery icon -->
      <svg class="icon" viewBox="0 0 48 48">
        <rect x="6" y="12" width="30" height="24" rx="4" ry="4" fill="none" stroke="#FFFFFF" stroke-width="4"></rect>
        <rect x="10" y="16" width="22" height="16" rx="2" fill="#FFFFFF"></rect>
        <rect x="38" y="18" width="4" height="12" rx="1" fill="#FFFFFF"></rect>
      </svg>
    </div>
  </div>

  <!-- Top App Bar -->
  <div class="app-bar">
    <div class="left">
      <svg class="icon" viewBox="0 0 48 48">
        <path d="M30 10 L14 24 L30 38" stroke="#DADADA" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
      </svg>
    </div>
    <div class="right">
      <!-- Star -->
      <svg class="icon" viewBox="0 0 48 48">
        <polygon points="24,6 29,18 42,18 31,26 35,38 24,30 13,38 17,26 6,18 19,18" fill="#DADADA"></polygon>
      </svg>
      <!-- Share -->
      <svg class="icon" viewBox="0 0 48 48">
        <circle cx="10" cy="24" r="5" fill="#DADADA"></circle>
        <circle cx="38" cy="12" r="5" fill="#DADADA"></circle>
        <circle cx="38" cy="36" r="5" fill="#DADADA"></circle>
        <path d="M14 24 L33 14" stroke="#DADADA" stroke-width="4" fill="none"></path>
        <path d="M14 24 L33 34" stroke="#DADADA" stroke-width="4" fill="none"></path>
      </svg>
      <!-- Scissors -->
      <svg class="icon" viewBox="0 0 48 48">
        <circle cx="14" cy="16" r="6" fill="#DADADA"></circle>
        <circle cx="14" cy="32" r="6" fill="#DADADA"></circle>
        <path d="M20 16 L40 28" stroke="#DADADA" stroke-width="4" fill="none"></path>
        <path d="M20 32 L40 20" stroke="#DADADA" stroke-width="4" fill="none"></path>
      </svg>
      <!-- Search -->
      <svg class="icon" viewBox="0 0 48 48">
        <circle cx="20" cy="20" r="12" stroke="#DADADA" stroke-width="4" fill="none"></circle>
        <path d="M32 32 L44 44" stroke="#DADADA" stroke-width="4"></path>
      </svg>
      <!-- More (vertical) -->
      <svg class="icon" viewBox="0 0 48 48">
        <circle cx="24" cy="10" r="4" fill="#DADADA"></circle>
        <circle cx="24" cy="24" r="4" fill="#DADADA"></circle>
        <circle cx="24" cy="38" r="4" fill="#DADADA"></circle>
      </svg>
    </div>
  </div>

  <!-- Content card with recording title -->
  <div class="content-card">
    <div class="title">Birthday Song</div>
    <div class="subtitle">Thu, Dec 14 · 7:56 AM</div>
  </div>

  <!-- Waveform area -->
  <div class="wave-area">
    <div class="wave-center-line"></div>
    <div class="wave-bars">
      <span class="dot"></span>
      <span></span>
      <span class="mid"></span>
      <span></span>
      <span class="mid"></span>
      <span class="tall"></span>
      <span class="mid"></span>
      <span></span>
      <span class="dot"></span>
      <span class="dot"></span>
      <span class="dot"></span>
      <span class="mid"></span>
      <span class="tall"></span>
      <span class="mid"></span>
      <span class="dot"></span>
    </div>
  </div>

  <!-- Bottom Sheet -->
  <div class="bottom-sheet">
    <div class="sheet-header">
      <svg class="icon" viewBox="0 0 48 48">
        <path d="M30 10 L14 24 L30 38" stroke="#EDEDED" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
      </svg>
      <div>Select file</div>
    </div>
    <div class="sheet-body">
      <div class="option">
        <div class="radio"><div class="dot"></div></div>
        <div class="texts">
          <div class="label">Audio (.m4a)</div>
          <div class="helper">File size is 347 kB</div>
        </div>
      </div>
      <div class="option">
        <div class="radio unchecked"><div class="dot"></div></div>
        <div class="texts">
          <div class="label">Transcript (.txt)</div>
        </div>
      </div>
    </div>
    <div class="next-btn">Next</div>
  </div>

  <!-- Home indicator -->
  <div class="home-indicator"></div>
</div>
</body>
</html>