File size: 9,092 Bytes
c32f9a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Recorder Share Sheet Mock</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px; height: 2400px; position: relative; overflow: hidden;
    background: #121314; color: #E6E6E6; font-family: Arial, Helvetica, sans-serif;
  }

  /* Status bar */
  .status-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 110px;
    padding: 28px; display: flex; align-items: center; justify-content: space-between;
    color: #F5F5F5; font-size: 42px; letter-spacing: 0.5px;
  }
  .status-icons { display: flex; gap: 26px; align-items: center; opacity: 0.95; }

  /* App bar */
  .appbar {
    position: absolute; top: 110px; left: 0; right: 0; height: 110px;
    padding: 0 28px; display: flex; align-items: center; color: #CFCFCF;
  }
  .appbar .spacer { flex: 1; }
  .actions { display: flex; gap: 44px; align-items: center; }
  .icon-btn svg { width: 56px; height: 56px; }

  /* Recording card */
  .card {
    position: absolute; left: 24px; right: 24px; top: 230px; height: 1320px;
    background: #161718; border-radius: 44px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  }
  .card-content { padding: 80px 72px; }
  .title { font-size: 64px; font-weight: 600; color: #DADADA; margin-bottom: 16px; }
  .subtitle { font-size: 32px; color: #9FA4A6; }

  /* Waveform approximation */
  .wave-area { position: absolute; left: 60px; right: 60px; bottom: 170px; height: 360px; }
  .playhead {
    position: absolute; left: 520px; top: 20px; width: 6px; height: 320px;
    background: #303234; border-radius: 3px;
  }
  .wave-bars {
    position: absolute; left: 560px; right: 20px; bottom: 30px;
    display: flex; align-items: flex-end; gap: 18px;
  }
  .bar {
    width: 18px; background: #3B3D40; border-radius: 9px;
  }
  .dot {
    width: 8px; height: 8px; border-radius: 50%; background: #3B3D40;
    margin-right: 14px; opacity: 0.8;
  }
  .left-dots {
    position: absolute; left: 520px; bottom: 48px; display: flex; gap: 14px;
  }

  /* Bottom sheet */
  .sheet {
    position: absolute; left: 0; right: 0; bottom: 0; height: 860px;
    background: #2B3237; border-top-left-radius: 64px; border-top-right-radius: 64px;
    box-shadow: 0 -24px 60px rgba(0,0,0,0.55);
  }
  .sheet-grabber {
    width: 180px; height: 10px; border-radius: 10px; background: #E5E5E5;
    position: absolute; left: 50%; transform: translateX(-50%); bottom: 32px; opacity: 0.9;
  }
  .sheet-title {
    text-align: center; font-size: 56px; margin-top: 52px; color: #EAEAEA;
  }
  .sheet-list { margin-top: 40px; padding: 0 64px; }
  .sheet-item { display: flex; align-items: center; gap: 32px; padding: 38px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sheet-item:last-child { border-bottom: none; }
  .item-text { display: flex; flex-direction: column; }
  .item-title { font-size: 44px; color: #EEEEEE; }
  .item-sub { font-size: 28px; color: #AEB4B7; margin-top: 8px; }

  .list-icon svg { width: 58px; height: 58px; fill: none; stroke: #D6D6D6; stroke-width: 3.5; }
  .list-icon { width: 74px; height: 74px; display: flex; align-items: center; justify-content: center; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="time">8:45</div>
    <div class="status-icons">
      <!-- Simple Wi-Fi -->
      <svg width="46" height="46" viewBox="0 0 46 46">
        <path d="M8 18c6-5 24-5 30 0" stroke="#FFFFFF" stroke-width="3" fill="none" stroke-linecap="round"/>
        <path d="M13 24c4-3 16-3 20 0" stroke="#FFFFFF" stroke-width="3" fill="none" stroke-linecap="round"/>
        <circle cx="23" cy="30" r="3" fill="#FFFFFF"/>
      </svg>
      <!-- Battery with bolt -->
      <svg width="46" height="46" viewBox="0 0 46 46">
        <rect x="8" y="13" width="28" height="18" rx="3" ry="3" stroke="#FFFFFF" fill="none" stroke-width="3"/>
        <rect x="36" y="18" width="4" height="8" fill="#FFFFFF"/>
        <path d="M24 17l-6 9h5l-1 6 6-9h-5l1-6z" fill="#FFFFFF"/>
      </svg>
    </div>
  </div>

  <!-- App bar -->
  <div class="appbar">
    <div class="icon-btn">
      <!-- Back -->
      <svg viewBox="0 0 48 48">
        <path d="M30 10 L14 24 L30 38" stroke="#CFCFCF" stroke-width="5.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="spacer"></div>
    <div class="actions">
      <!-- Star outline -->
      <div class="icon-btn">
        <svg viewBox="0 0 48 48">
          <path d="M24 8l6 12 13 2-9 9 2 13-12-6-12 6 2-13-9-9 13-2z" fill="none" stroke="#CFCFCF" stroke-width="3.5" stroke-linejoin="round"/>
        </svg>
      </div>
      <!-- Share -->
      <div class="icon-btn">
        <svg viewBox="0 0 48 48">
          <circle cx="14" cy="24" r="4" fill="#CFCFCF"/>
          <circle cx="34" cy="14" r="4" fill="#CFCFCF"/>
          <circle cx="34" cy="34" r="4" fill="#CFCFCF"/>
          <path d="M17 23L30 16M17 25L30 32" stroke="#CFCFCF" stroke-width="3" stroke-linecap="round"/>
        </svg>
      </div>
      <!-- Scissors -->
      <div class="icon-btn">
        <svg viewBox="0 0 48 48">
          <circle cx="16" cy="18" r="6" stroke="#CFCFCF" stroke-width="3" fill="none"/>
          <circle cx="16" cy="30" r="6" stroke="#CFCFCF" stroke-width="3" fill="none"/>
          <path d="M20 24L40 14M20 24L40 34" stroke="#CFCFCF" stroke-width="3" stroke-linecap="round"/>
        </svg>
      </div>
      <!-- Search -->
      <div class="icon-btn">
        <svg viewBox="0 0 48 48">
          <circle cx="22" cy="22" r="10" stroke="#CFCFCF" stroke-width="3" fill="none"/>
          <path d="M32 32L44 44" stroke="#CFCFCF" stroke-width="3" stroke-linecap="round"/>
        </svg>
      </div>
      <!-- More (vertical dots) -->
      <div class="icon-btn">
        <svg viewBox="0 0 48 48">
          <circle cx="24" cy="12" r="3" fill="#CFCFCF"/>
          <circle cx="24" cy="24" r="3" fill="#CFCFCF"/>
          <circle cx="24" cy="36" r="3" fill="#CFCFCF"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Recording card -->
  <div class="card">
    <div class="card-content">
      <div class="title">Birthday Song</div>
      <div class="subtitle">Thu, Dec 14 • 7:56 AM</div>
    </div>

    <div class="wave-area">
      <div class="playhead"></div>

      <!-- Subtle left dotted guide -->
      <div class="left-dots">
        <div class="dot"></div><div class="dot"></div><div class="dot"></div>
        <div class="dot"></div><div class="dot"></div><div class="dot"></div>
        <div class="dot"></div><div class="dot"></div><div class="dot"></div>
        <div class="dot"></div><div class="dot"></div><div class="dot"></div>
      </div>

      <!-- Right waveform bars -->
      <div class="wave-bars">
        <div class="bar" style="height:22px;"></div>
        <div class="bar" style="height:36px;"></div>
        <div class="bar" style="height:58px;"></div>
        <div class="bar" style="height:84px;"></div>
        <div class="bar" style="height:62px;"></div>
        <div class="bar" style="height:32px;"></div>
        <div class="bar" style="height:26px;"></div>
        <div class="bar" style="height:18px;"></div>
        <div class="bar" style="height:26px;"></div>
        <div class="bar" style="height:40px;"></div>
        <div class="bar" style="height:60px;"></div>
        <div class="bar" style="height:92px;"></div>
        <div class="bar" style="height:76px;"></div>
        <div class="bar" style="height:40px;"></div>
        <div class="bar" style="height:24px;"></div>
      </div>
    </div>
  </div>

  <!-- Bottom share sheet -->
  <div class="sheet">
    <div class="sheet-title">Share</div>
    <div class="sheet-list">
      <div class="sheet-item">
        <div class="list-icon">
          <!-- Folder/file icon -->
          <svg viewBox="0 0 64 64">
            <path d="M8 20h18l4 6h26v24H8z" stroke="#D6D6D6" fill="none" stroke-width="3" stroke-linejoin="round"/>
          </svg>
        </div>
        <div class="item-text">
          <div class="item-title">File</div>
          <div class="item-sub">Share audio or transcript file</div>
        </div>
      </div>
      <div class="sheet-item">
        <div class="list-icon">
          <!-- Link icon -->
          <svg viewBox="0 0 64 64">
            <path d="M22 32c0-6 6-10 12-10h6" stroke="#D6D6D6" stroke-width="3" fill="none" stroke-linecap="round"/>
            <path d="M42 32c0 6-6 10-12 10h-6" stroke="#D6D6D6" stroke-width="3" fill="none" stroke-linecap="round"/>
            <path d="M26 26l12 12" stroke="#D6D6D6" stroke-width="3" fill="none" stroke-linecap="round"/>
          </svg>
        </div>
        <div class="item-text">
          <div class="item-title">Link</div>
          <div class="item-sub">Create a link to view on recorder.google.com</div>
        </div>
      </div>
    </div>

    <!-- Gesture bar -->
    <div class="sheet-grabber"></div>
  </div>

</div>
</body>
</html>