File size: 9,638 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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Rendered 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: #121212;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    color: #fff;
  }

  /* Header */
  .app-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: #1f4c81;
  }
  .status {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    font-size: 34px;
    color: #fff;
    opacity: 0.95;
  }
  .status .right-icons {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .toolbar {
    height: 132px;
    display: flex;
    align-items: center;
    padding: 0 28px;
    color: #fff;
  }
  .toolbar .title {
    font-size: 56px;
    font-weight: 600;
    margin-left: 20px;
    letter-spacing: 0.5px;
  }
  .toolbar .actions {
    margin-left: auto;
    display: flex;
    gap: 36px;
    align-items: center;
  }
  .icon-btn {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .icon-btn svg { width: 64px; height: 64px; fill: none; stroke: #ffffff; stroke-width: 4; }

  /* Alert banner */
  .alert {
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #181818;
    display: flex;
    align-items: center;
    padding: 0 32px;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.08);
  }
  .alert .alert-icon {
    width: 48px;
    height: 48px;
    margin-right: 18px;
  }
  .alert .alert-text {
    font-size: 36px;
    color: #e53935;
    flex: 1;
  }
  .alert .enable-btn {
    background: #3a7bd5;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 18px 32px;
    font-size: 34px;
    box-shadow: 0 3px 0 rgba(0,0,0,0.25);
  }

  /* Modal card */
  .modal {
    position: absolute;
    left: 60px;
    top: 720px;
    width: 960px;
    background: #3b3b3b;
    border: 1px solid #505050;
    border-radius: 8px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  }
  .modal-header {
    height: 120px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 24px;
    color: #e0e0e0;
  }
  .modal-header .select {
    color: #58a6ff;
    font-size: 40px;
    font-weight: 500;
  }
  .modal-header .tag {
    border: 1px solid #616161;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 38px;
    color: #ffffff;
    background: #454545;
  }
  .modal-header .chev {
    margin-left: auto;
  }
  .modal-header .chev svg {
    width: 42px; height: 42px; stroke: #cfcfcf; stroke-width: 5;
  }
  .modal .divider {
    height: 4px;
    background: #2196f3;
  }
  .modal .row {
    display: flex;
    align-items: center;
    padding: 26px 24px;
    gap: 28px;
    color: #e0e0e0;
  }
  .modal .label {
    font-size: 36px;
    color: #c7c7c7;
    min-width: 220px;
  }
  .underline-input {
    flex: 0 0 320px;
    font-size: 48px;
    color: #ffffff;
    padding-bottom: 8px;
    border-bottom: 3px solid #dcdcdc;
    text-align: center;
  }
  .unit {
    font-size: 36px;
    color: #cfcfcf;
    margin-left: auto;
    margin-right: 12px;
  }
  .select-box {
    flex: 0 0 520px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #444444;
    border: 1px solid #666666;
    border-radius: 6px;
    color: #ffffff;
    font-size: 40px;
    padding: 18px 22px;
  }
  .select-box .chev-sm svg {
    width: 32px; height: 32px; stroke: #d6d6d6; stroke-width: 4;
  }

  /* Toggle */
  .toggle {
    width: 160px;
    height: 64px;
    background: #7b7b7b;
    border-radius: 32px;
    position: relative;
    margin-left: 8px;
  }
  .toggle .knob {
    width: 64px;
    height: 64px;
    background: #cfcfcf;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  }

  /* Modal footer buttons */
  .modal-footer {
    display: flex;
    gap: 28px;
    padding: 24px;
  }
  .btn {
    flex: 1;
    height: 120px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 600;
    box-shadow: 0 4px 0 rgba(0,0,0,0.35);
  }
  .btn.cancel { background: #c62828; color: #ffffff; }
  .btn.done   { background: #2196f3; color: #ffffff; }

  /* Bottom content mock */
  .sticker-bar {
    position: absolute;
    left: 60px;
    bottom: 160px;
    width: 960px;
    height: 160px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 36px;
  }

  .home-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 12px;
    border-radius: 6px;
    background: #ffffff;
    opacity: 0.85;
  }

  /* Simple utility for small icons/text */
  .muted { opacity: 0.85; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Header -->
  <div class="app-header">
    <div class="status">
      <div class="left muted">11:29&nbsp;&nbsp;84°</div>
      <div class="right-icons">
        <!-- Wifi icon -->
        <svg viewBox="0 0 24 24">
          <path d="M2 8c5-4 15-4 20 0M5 11c3-3 11-3 14 0M9 15c2-2 6-2 8 0M12 18l2 2-2 2-2-2 2-2z" stroke="#fff" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
        <!-- Signal icon -->
        <svg viewBox="0 0 24 24">
          <path d="M3 21h3v-6H3v6zm5 0h3v-9H8v9zm5 0h3v-12h-3v12zm5 0h3V3h-3v18z" stroke="#fff" fill="none"/>
        </svg>
        <!-- Battery icon -->
        <svg viewBox="0 0 32 18">
          <rect x="1" y="3" width="26" height="12" rx="2" stroke="#fff" fill="none" stroke-width="2"/>
          <rect x="3" y="5" width="18" height="8" fill="#ffffff"/>
          <rect x="27" y="7" width="4" height="4" rx="1" fill="#ffffff"/>
        </svg>
      </div>
    </div>
    <div class="toolbar">
      <!-- Hamburger -->
      <div class="icon-btn" aria-label="Menu">
        <svg viewBox="0 0 24 24">
          <path d="M3 6h18M3 12h18M3 18h18" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="title">Tasks</div>
      <div class="actions">
        <!-- Plus in circle (reminder add) -->
        <div class="icon-btn" aria-label="Add">
          <svg viewBox="0 0 24 24">
            <circle cx="12" cy="12" r="10" stroke="#fff"/>
            <path d="M12 7v10M7 12h10" stroke="#fff" stroke-linecap="round"/>
          </svg>
        </div>
        <!-- Check circle -->
        <div class="icon-btn" aria-label="Check">
          <svg viewBox="0 0 24 24">
            <circle cx="12" cy="12" r="10" stroke="#fff"/>
            <path d="M7 12l3 3 7-7" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
          </svg>
        </div>
        <!-- Search -->
        <div class="icon-btn" aria-label="Search">
          <svg viewBox="0 0 24 24">
            <circle cx="11" cy="11" r="7" stroke="#fff"/>
            <path d="M20 20l-4-4" stroke="#fff" stroke-linecap="round"/>
          </svg>
        </div>
      </div>
    </div>
  </div>

  <!-- Alert banner -->
  <div class="alert">
    <div class="alert-icon">
      <svg viewBox="0 0 48 48">
        <circle cx="24" cy="24" r="22" fill="#e53935"/>
        <rect x="22" y="12" width="4" height="16" fill="#ffffff"/>
        <rect x="22" y="30" width="4" height="6" fill="#ffffff"/>
      </svg>
    </div>
    <div class="alert-text">Please allow app to send you notification</div>
    <button class="enable-btn">Enable</button>
  </div>

  <!-- Modal dialog -->
  <div class="modal">
    <div class="modal-header">
      <div class="select">Select</div>
      <div class="tag">REPEAT HOURLY</div>
      <div class="chev">
        <svg viewBox="0 0 24 24">
          <path d="M5 9l7 7 7-7" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>
    <div class="divider"></div>

    <div class="row">
      <div class="label">EVERY</div>
      <div class="underline-input">1</div>
      <div class="unit">hour</div>
    </div>

    <div class="row">
      <div class="label">REPEAT ON:</div>
      <div class="select-box">
        <span>Everyday</span>
        <span class="chev-sm">
          <svg viewBox="0 0 24 24">
            <path d="M5 9l7 7 7-7" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
          </svg>
        </span>
      </div>
    </div>

    <div class="row">
      <div class="label">ENDS:</div>
      <div class="select-box">
        <span>Never</span>
        <span class="chev-sm">
          <svg viewBox="0 0 24 24">
            <path d="M5 9l7 7 7-7" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
          </svg>
        </span>
      </div>
    </div>

    <div class="row">
      <div class="label">DO NOT DISTURB:</div>
      <div class="toggle" aria-label="toggle">
        <div class="knob"></div>
      </div>
    </div>

    <div class="modal-footer">
      <div class="btn cancel">Cancel</div>
      <div class="btn done">Done</div>
    </div>
  </div>

  <!-- Bottom sticker bar placeholder -->
  <div class="sticker-bar">[IMG: Sticker bar with emoji icons]</div>

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

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