File size: 8,952 Bytes
ff1f000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<html>
<head>
<meta charset="UTF-8">
<title>Mobile UI - Time Picker</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: #141418;
    border-radius: 0;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    color: #D9D9D9;
    font-size: 42px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .status-bar .right-icons {
    margin-left: auto;
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .icon-battery, .icon-wifi {
    width: 56px; height: 32px;
    border: 2px solid #D9D9D9;
    border-radius: 6px;
    position: relative;
  }
  .icon-battery::after {
    content: "";
    position: absolute;
    right: -8px; top: 8px;
    width: 8px; height: 16px;
    background: #D9D9D9; border-radius: 2px;
  }
  .icon-wifi {
    border: none;
  }
  .icon-wifi::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(217,217,217,0.9) 0 6px, transparent 7px),
                radial-gradient(circle at 50% 60%, rgba(217,217,217,0.7) 0 12px, transparent 13px),
                radial-gradient(circle at 50% 60%, rgba(217,217,217,0.5) 0 18px, transparent 19px);
  }

  /* App header */
  .app-header {
    position: absolute;
    top: 140px;
    left: 40px;
    right: 40px;
    height: 140px;
    display: flex;
    align-items: center;
    color: #F2F2F2;
  }
  .close-btn {
    width: 72px; height: 72px;
    border-radius: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #CFCFCF;
    border: 2px solid #3A3A42;
    margin-right: 20px;
  }
  .close-btn svg { width: 36px; height: 36px; }
  .title {
    font-size: 88px;
    letter-spacing: 1px;
    flex: 1;
  }
  .save-pill {
    background: #8E76D6;
    color: white;
    padding: 26px 44px;
    border-radius: 48px;
    font-size: 46px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  }

  /* Event details (background content) */
  .details {
    position: absolute;
    top: 320px;
    left: 40px;
    right: 40px;
    color: #BFBFC7;
    font-size: 46px;
  }
  .detail-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
  }
  .dot {
    width: 30px; height: 30px; border-radius: 50%; background: #4CA3FF;
  }
  .label-strong { color: #E6E6EB; }
  .left-icon {
    width: 62px; height: 62px; border-radius: 31px; background: #23232A;
    display: inline-flex; align-items: center; justify-content: center; color: #8E8EA3; margin-right: 8px;
  }

  /* Scrim + Modal */
  .scrim {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
  }
  .modal {
    position: absolute;
    left: 80px;
    top: 720px;
    width: 920px;
    height: 1100px;
    background: #2A2432;
    border-radius: 48px;
    box-shadow: 0 40px 120px rgba(0,0,0,0.6);
    color: #ECEAF6;
    padding: 52px;
    box-sizing: border-box;
  }
  .modal-title {
    font-size: 48px;
    color: #DCD8EA;
    margin-bottom: 40px;
  }

  /* Time display row */
  .time-row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 160px;
    align-items: center;
    gap: 26px;
    margin-bottom: 30px;
  }
  .time-box {
    height: 190px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 128px;
    font-weight: bold;
    letter-spacing: 4px;
  }
  .hour-box { background: #3A3542; color: #EDE8F8; }
  .minute-box { background: #7E63C8; color: #F5EDFF; }
  .time-colon {
    font-size: 140px; color: #CFC1E8; text-align: center;
  }
  .ampm {
    display: flex; flex-direction: column; gap: 16px;
  }
  .ampm .btn {
    height: 90px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
    font-size: 48px; font-weight: 700;
    background: #3A3542; color: #EDE8F8;
    border: 2px solid #524B60;
  }
  .ampm .btn.active {
    background: #8E76D6; color: white; border-color: transparent;
  }
  .ampm .btn.inactive {
    background: #5B4E69; color: #E8DDF7;
  }

  /* Dial */
  .dial {
    position: relative;
    margin: 30px auto 0 auto;
    width: 760px; height: 760px;
    background: radial-gradient(circle at 50% 50%, #30283A 0%, #2A2432 70%);
    border-radius: 50%;
    border: 1px solid #4B4358;
  }
  .dial .number {
    position: absolute; color: #DCD3EB; font-size: 54px;
  }

  /* Place minute numbers around the circle (approximate positions) */
  .n05  { left: 570px; top: 60px; }
  .n10  { left: 655px; top: 180px; }
  .n15  { left: 700px; top: 330px; }
  .n20  { left: 655px; top: 480px; }
  .n25  { left: 565px; top: 600px; }
  .n30  { left: 360px; top: 680px; }
  .n35  { left: 160px; top: 600px; }
  .n40  { left: 70px;  top: 480px; }
  .n45  { left: 30px;  top: 330px; }
  .n50  { left: 70px;  top: 180px; }
  .n55  { left: 160px; top: 60px; }

  /* Center top "00" bubble and pointer line */
  .bubble-00 {
    position: absolute;
    left: 330px; top: 20px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: #D7C8F7;
    color: #2A2432; font-weight: 800; font-size: 48px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 10px rgba(0,0,0,0.3);
  }
  .pointer {
    position: absolute;
    left: 380px; top: 120px;
    width: 6px; height: 520px;
    background: #D7C8F7;
  }
  .pointer-end {
    position: absolute;
    left: 352px; top: 620px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #D7C8F7;
  }

  /* Modal footer */
  .footer {
    position: absolute; bottom: 40px; left: 52px; right: 52px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .kbd {
    width: 120px; height: 72px; border-radius: 12px;
    background: #3A3542; color: #CFC7DE; font-size: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #524B60;
  }
  .actions {
    display: flex; gap: 40px; font-size: 48px; font-weight: 700;
    color: #B9A9E6;
  }
  .actions .ghost { color: #CFC1E8; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>8:42</div>
    <div class="right-icons">
      <div class="icon-wifi"></div>
      <div class="icon-battery"></div>
    </div>
  </div>

  <!-- App header -->
  <div class="app-header">
    <div class="close-btn" title="Close">
      <svg viewBox="0 0 24 24">
        <path d="M6 6 L18 18 M18 6 L6 18" stroke="#CFCFCF" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
    </div>
    <div class="title">Transport</div>
    <div class="save-pill">Save</div>
  </div>

  <!-- Background details (partially visible behind modal) -->
  <div class="details">
    <div class="detail-row">
      <div class="left-icon">๐Ÿ—“๏ธ</div>
      <div class="dot"></div>
      <div class="label-strong">Events</div>
    </div>
    <div class="detail-row" style="padding-left: 86px;">
      dbwscratch.test.id4@gmail.com
    </div>
    <div class="detail-row">
      <div class="left-icon">โฐ</div>
      <span>Time</span>
    </div>
    <div class="detail-row">
      <div class="left-icon">๐Ÿ”</div>
      <span>Does not repeat</span>
    </div>
    <div class="detail-row">
      <div class="left-icon">๐Ÿ‘ฅ</div>
      <span>Add guests</span>
    </div>
    <div class="detail-row">
      <div class="left-icon">๐Ÿ“</div>
      <span>Add location</span>
    </div>
    <div class="detail-row">
      <div class="left-icon">๐Ÿ””</div>
      <span>30 minutes before</span>
    </div>
  </div>

  <!-- Scrim and modal time picker -->
  <div class="scrim"></div>

  <div class="modal">
    <div class="modal-title">Select time</div>

    <div class="time-row">
      <div class="time-box hour-box">02</div>
      <div class="time-colon">:</div>
      <div class="time-box minute-box">00</div>
      <div class="ampm">
        <div class="btn active">AM</div>
        <div class="btn inactive">PM</div>
      </div>
    </div>

    <div class="dial">
      <div class="bubble-00">00</div>
      <div class="pointer"></div>
      <div class="pointer-end"></div>

      <div class="number n05">05</div>
      <div class="number n10">10</div>
      <div class="number n15">15</div>
      <div class="number n20">20</div>
      <div class="number n25">25</div>
      <div class="number n30">30</div>
      <div class="number n35">35</div>
      <div class="number n40">40</div>
      <div class="number n45">45</div>
      <div class="number n50">50</div>
      <div class="number n55">55</div>
    </div>

    <div class="footer">
      <div class="kbd">โŒจ</div>
      <div class="actions">
        <div class="ghost">Cancel</div>
        <div>OK</div>
      </div>
    </div>
  </div>

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