File size: 8,790 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>UI Render</title>
<style>
  :root{
    --bg:#121212;
    --sheet:#2d3439;
    --card:#1a1f22;
    --text:#cfcfcf;
    --muted:#9aa1a6;
    --icon:#c7cdd2;
    --divider:#3c4246;
    --accent:#8ab9f4;
  }
  body{ margin:0; padding:0; background:transparent; font-family:Arial, Helvetica, sans-serif; }
  #render-target{
    width:1080px; height:2400px;
    position:relative; overflow:hidden;
    background:var(--bg);
    border-radius:24px;
  }

  /* Status bar */
  .status-bar{ position:absolute; top:20px; left:32px; right:32px; height:64px; }
  .time{ color:#f0f0f0; font-size:42px; line-height:64px; }
  .status-icons{ position:absolute; right:0; top:10px; display:flex; gap:24px; align-items:center; }
  .status-icons svg{ width:44px; height:44px; stroke:#ffffff; fill:none; opacity:0.95; }

  /* App bar */
  .app-bar{ position:absolute; top:108px; left:24px; right:24px; height:80px; }
  .app-bar .left{ position:absolute; left:0; top:0; height:80px; display:flex; align-items:center; gap:20px; }
  .app-bar .right{ position:absolute; right:0; top:0; height:80px; display:flex; align-items:center; gap:42px; }
  .app-bar svg{ width:48px; height:48px; stroke:var(--icon); fill:none; stroke-width:2.5; opacity:0.9; }

  /* Title card */
  .title-card{
    position:absolute; top:206px; left:32px; width:1016px; height:500px;
    background:var(--card); border-radius:28px;
    box-shadow:0 18px 40px rgba(0,0,0,0.25) inset;
  }
  .title-card .title{ position:absolute; top:40px; left:40px; color:#d5d7da; font-size:56px; font-weight:600; letter-spacing:0.2px; }
  .title-card .subtitle{ position:absolute; top:120px; left:40px; color:var(--muted); font-size:32px; }

  /* Wave area */
  .wave-area{ position:absolute; top:780px; left:24px; right:24px; height:820px; }
  .wave-area .vline{
    position:absolute; left:540px; top:40px; width:6px; height:720px; background:#3e4448; border-radius:3px;
  }
  .wave-area .bars{ position:absolute; bottom:40px; left:140px; right:80px; height:120px; display:flex; align-items:flex-end; gap:26px; }
  .bar{ width:18px; background:#3e4448; border-radius:9px; opacity:0.85; }
  .bar:nth-child(1){ height:12px; }
  .bar:nth-child(2){ height:22px; }
  .bar:nth-child(3){ height:34px; }
  .bar:nth-child(4){ height:24px; }
  .bar:nth-child(5){ height:18px; }
  .bar:nth-child(6){ height:40px; }
  .bar:nth-child(7){ height:58px; }
  .bar:nth-child(8){ height:34px; }
  .bar:nth-child(9){ height:20px; }
  .bar:nth-child(10){ height:16px; }
  .bar:nth-child(11){ height:54px; }
  .bar:nth-child(12){ height:84px; }
  .bar:nth-child(13){ height:64px; }
  .bar:nth-child(14){ height:92px; }
  .bar:nth-child(15){ height:70px; }

  /* Bottom sheet */
  .sheet{
    position:absolute; left:0; right:0; bottom:0; height:680px;
    background:var(--sheet); border-top-left-radius:42px; border-top-right-radius:42px;
    box-shadow:0 -10px 40px rgba(0,0,0,0.35);
  }
  .sheet-header{ position:absolute; top:38px; left:32px; right:32px; height:80px; }
  .sheet-header .back{ position:absolute; left:12px; top:0; width:60px; height:60px; display:flex; align-items:center; justify-content:center; }
  .sheet-header .title{ position:absolute; left:92px; top:6px; color:#e6e6e6; font-size:44px; font-weight:600; }

  .option{ position:relative; margin:160px 40px 0 40px; padding:28px 28px 28px 92px; border-radius:18px; }
  .option .label{ color:#e9edf0; font-size:40px; }
  .option .hint{ color:#aab1b6; font-size:28px; margin-top:10px; }
  .radio{
    position:absolute; left:22px; top:40px; width:44px; height:44px; border-radius:50%;
    border:3px solid var(--accent); display:flex; align-items:center; justify-content:center; background:transparent;
  }
  .radio::after{
    content:""; width:22px; height:22px; border-radius:50%; background:var(--accent);
  }
  .option.second{ margin-top:40px; }
  .option.second .radio{ border-color:#9aa1a6; }
  .option.second .radio::after{ background:transparent; width:0; height:0; }

  .next-btn{
    position:absolute; right:40px; bottom:118px;
    width:180px; height:90px; background:var(--accent); color:#0e2035;
    border-radius:45px; display:flex; align-items:center; justify-content:center;
    font-size:38px; font-weight:600;
    box-shadow:0 6px 16px rgba(138,185,244,0.35);
  }

  /* Gesture bar */
  .gesture{ position:absolute; left:50%; bottom:22px; transform:translateX(-50%); width:360px; height:12px; background:#ffffff; border-radius:6px; opacity:0.9; }

  /* Utility icon color */
  .muted{ stroke:var(--icon); }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="time">8:47</div>
    <div class="status-icons">
      <!-- Wi‑Fi -->
      <svg viewBox="0 0 24 24">
        <path d="M2 9 Q12 2 22 9" stroke-width="2.4"></path>
        <path d="M5 12 Q12 6 19 12" stroke-width="2.4"></path>
        <path d="M8 15 Q12 11 16 15" stroke-width="2.4"></path>
        <circle cx="12" cy="18" r="2.2" fill="#ffffff"></circle>
      </svg>
      <!-- Battery -->
      <svg viewBox="0 0 30 24">
        <rect x="2" y="5" width="22" height="14" rx="3" ry="3" stroke-width="2.4"></rect>
        <rect x="4" y="7" width="15" height="10" rx="2" ry="2" fill="#ffffff" opacity="0.9"></rect>
        <rect x="24" y="9" width="4" height="6" rx="1" ry="1" stroke-width="2" fill="#ffffff"></rect>
      </svg>
    </div>
  </div>

  <!-- App bar with actions -->
  <div class="app-bar">
    <div class="left">
      <!-- Back arrow -->
      <svg viewBox="0 0 48 48">
        <polyline points="30,10 16,24 30,38" class="muted" fill="none" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"></polyline>
      </svg>
    </div>
    <div class="right">
      <!-- Star -->
      <svg 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" class="muted" fill="none" stroke-width="2.6" stroke-linejoin="round"></polygon>
      </svg>
      <!-- Share -->
      <svg viewBox="0 0 48 48">
        <circle cx="12" cy="30" r="4" class="muted" stroke-width="2.6"></circle>
        <circle cx="36" cy="18" r="4" class="muted" stroke-width="2.6"></circle>
        <circle cx="36" cy="34" r="4" class="muted" stroke-width="2.6"></circle>
        <path d="M16 30 L32 20 M16 30 L32 30" class="muted" stroke-width="2.6"></path>
      </svg>
      <!-- Scissors -->
      <svg viewBox="0 0 48 48">
        <circle cx="14" cy="16" r="6" class="muted" stroke-width="2.6"></circle>
        <circle cx="14" cy="32" r="6" class="muted" stroke-width="2.6"></circle>
        <path d="M20 16 L42 26 M20 32 L42 22" class="muted" stroke-width="2.6" stroke-linecap="round"></path>
      </svg>
      <!-- Search -->
      <svg viewBox="0 0 48 48">
        <circle cx="22" cy="22" r="12" class="muted" stroke-width="2.6"></circle>
        <line x1="32" y1="32" x2="44" y2="44" class="muted" stroke-width="3" stroke-linecap="round"></line>
      </svg>
      <!-- More (vertical dots) -->
      <svg viewBox="0 0 48 48">
        <circle cx="24" cy="12" r="3.2" fill="var(--icon)"></circle>
        <circle cx="24" cy="24" r="3.2" fill="var(--icon)"></circle>
        <circle cx="24" cy="36" r="3.2" fill="var(--icon)"></circle>
      </svg>
    </div>
  </div>

  <!-- Title card -->
  <div class="title-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="vline"></div>
    <div class="bars">
      <div class="bar"></div><div class="bar"></div><div class="bar"></div><div class="bar"></div>
      <div class="bar"></div><div class="bar"></div><div class="bar"></div><div class="bar"></div>
      <div class="bar"></div><div class="bar"></div><div class="bar"></div><div class="bar"></div>
      <div class="bar"></div><div class="bar"></div><div class="bar"></div>
    </div>
  </div>

  <!-- Bottom sheet -->
  <div class="sheet">
    <div class="sheet-header">
      <div class="back">
        <svg viewBox="0 0 48 48">
          <polyline points="30,10 16,24 30,38" stroke="#cfd6db" fill="none" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"></polyline>
        </svg>
      </div>
      <div class="title">Select file</div>
    </div>

    <div class="option">
      <div class="radio"></div>
      <div class="label">Audio (.m4a)</div>
      <div class="hint">File size is 347 kB</div>
    </div>

    <div class="option second">
      <div class="radio"></div>
      <div class="label">Transcript (.txt)</div>
    </div>

    <div class="next-btn">Next</div>
  </div>

  <div class="gesture"></div>
</div>
</body>
</html>