File size: 12,859 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
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
397
398
399
400
401
402
403
404
405
406
407
408
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Search UI - Dark</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    position: relative;
    width: 1080px;
    height: 2400px;
    overflow: hidden;
    background: #000000;
    color: #EDEDED;
    font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  }

  /* Status bar */
  .status-bar {
    height: 110px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    font-size: 38px;
    box-sizing: border-box;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 26px;
    opacity: 0.9;
  }
  .icon-small {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Search bar */
  .search-wrap { padding: 0 24px; box-sizing: border-box; }
  .search-bar {
    height: 120px;
    border-radius: 60px;
    background: #2B2B2B;
    display: flex;
    align-items: center;
    padding: 0 22px;
    gap: 26px;
    box-sizing: border-box;
  }
  .search-text {
    flex: 1;
    font-size: 46px;
    color: #EAEAEA;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .underline {
    text-decoration: underline;
  }
  .circle-btn {
    width: 76px;
    height: 76px;
    border-radius: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }
  .circle-btn.camera {
    background: #3A3A3A;
  }

  /* Suggestions list */
  .suggestions {
    padding: 18px 20px 0 24px;
    box-sizing: border-box;
  }
  .suggestion {
    position: relative;
    padding: 28px 100px 28px 8px;
    border-bottom: 1px solid #1F1F1F;
  }
  .suggestion .title {
    font-size: 46px;
    color: #E5E5E5;
    line-height: 1.25;
  }
  .suggestion .title b {
    font-weight: 800;
    color: #FFFFFF;
  }
  .suggestion .sub {
    margin-top: 8px;
    font-size: 30px;
    color: #9E9E9E;
  }
  .suggestion .go {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
  }

  /* Keyboard mock */
  .keyboard {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 54px;
    height: 860px;
    background: #1B1B1B;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-sizing: border-box;
    padding: 14px 16px 10px;
  }
  .kb-toolbar {
    height: 90px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 6px 6px;
  }
  .chip {
    background: #2A2A2A;
    color: #EDEDED;
    border: 1px solid #3A3A3A;
    border-radius: 16px;
    padding: 12px 22px;
    font-size: 34px;
  }
  .chip.highlight {
    background: #E6D6FF;
    color: #2B2B2B;
    border-color: #E6D6FF;
  }

  .kb-rows { padding: 4px 2px 0; }
  .kb-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 12px;
    margin: 14px 8px;
  }
  .key {
    height: 120px;
    background: #2C2C2C;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F5F5;
    font-size: 44px;
  }
  .key.wide { grid-column: span 2; }
  .key.backspace, .key.shift { width: 120px; }
  .key.circle {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background: #D9C6FF;
    color: #2B2B2B;
    font-weight: 700;
  }
  .key.darkcircle {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background: #3A3A3A;
  }
  .space { grid-column: span 5; }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 10px;
    border-radius: 6px;
    background: #E5E5E5;
    opacity: 0.9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="time">8:23</div>
    <div class="status-right">
      <span class="icon-small" title="Signal">
        <svg width="34" height="34" viewBox="0 0 24 24" fill="#FFFFFF" opacity="0.85">
          <rect x="2" y="16" width="3" height="6" rx="1"></rect>
          <rect x="7" y="12" width="3" height="10" rx="1"></rect>
          <rect x="12" y="8" width="3" height="14" rx="1"></rect>
          <rect x="17" y="4" width="3" height="18" rx="1"></rect>
        </svg>
      </span>
      <span class="icon-small" title="Wi‑Fi">
        <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2">
          <path d="M2 9c5-4 15-4 20 0"></path>
          <path d="M5 12c4-3 10-3 14 0"></path>
          <path d="M8 15c2-2 6-2 8 0"></path>
          <circle cx="12" cy="18" r="1.8" fill="#FFFFFF"></circle>
        </svg>
      </span>
      <span class="icon-small" title="Battery">
        <svg width="42" height="34" viewBox="0 0 28 16" fill="none" stroke="#FFFFFF" stroke-width="2">
          <rect x="1" y="3" width="22" height="10" rx="2"></rect>
          <rect x="23.5" y="6" width="3" height="4" rx="1" fill="#FFFFFF" stroke="none"></rect>
          <rect x="3" y="5" width="18" height="6" rx="1" fill="#FFFFFF" stroke="none"></rect>
        </svg>
      </span>
    </div>
  </div>

  <!-- Search Bar -->
  <div class="search-wrap">
    <div class="search-bar">
      <span class="circle-btn" aria-label="Back">
        <svg width="46" height="46" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round">
          <path d="M15 19l-7-7 7-7"></path>
        </svg>
      </span>
      <div class="search-text">iPhone 14 Pro <span class="underline">Max</span></div>
      <span class="circle-btn" aria-label="Clear">
        <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2.6" stroke-linecap="round">
          <path d="M5 5l14 14M19 5L5 19"></path>
        </svg>
      </span>
      <span class="circle-btn camera" aria-label="Camera">
        <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2">
          <rect x="3" y="6" width="18" height="12" rx="2"></rect>
          <path d="M8 6l1.5-2h5L16 6"></path>
          <circle cx="12" cy="12" r="3.2"></circle>
        </svg>
      </span>
    </div>
  </div>

  <!-- Suggestions -->
  <div class="suggestions">
    <div class="suggestion">
      <div class="title">iphone 14 pro max <b>case</b></div>
      <div class="sub">Cell Phone Accessories</div>
      <div class="go">
        <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
          <path d="M7 17L17 7"></path>
          <path d="M9 7h8v8"></path>
        </svg>
      </div>
    </div>

    <div class="suggestion">
      <div class="title">iphone 14 pro max <b>case</b></div>
      <div class="sub">Cell Phones &amp; Smartphones</div>
      <div class="go">
        <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
          <path d="M7 17L17 7"></path>
          <path d="M9 7h8v8"></path>
        </svg>
      </div>
    </div>

    <div class="suggestion">
      <div class="title">iphone 14 pro max <b>unlocked</b></div>
      <div class="go">
        <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
          <path d="M7 17L17 7"></path>
          <path d="M9 7h8v8"></path>
        </svg>
      </div>
    </div>

    <div class="suggestion">
      <div class="title">iphone 14 pro max <b>phone</b></div>
      <div class="go">
        <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
          <path d="M7 17L17 7"></path>
          <path d="M9 7h8v8"></path>
        </svg>
      </div>
    </div>

    <div class="suggestion">
      <div class="title">iphone 14 pro max <b>cover</b></div>
      <div class="go">
        <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
          <path d="M7 17L17 7"></path>
          <path d="M9 7h8v8"></path>
        </svg>
      </div>
    </div>

    <div class="suggestion">
      <div class="title">iphone 14 pro max <b>1tb</b></div>
      <div class="go">
        <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
          <path d="M7 17L17 7"></path>
          <path d="M9 7h8v8"></path>
        </svg>
      </div>
    </div>

    <div class="suggestion">
      <div class="title">iphone 14 pro max <b>256gb</b></div>
      <div class="go">
        <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
          <path d="M7 17L17 7"></path>
          <path d="M9 7h8v8"></path>
        </svg>
      </div>
    </div>

    <div class="suggestion">
      <div class="title">iphone 14 pro max <b>screen protector</b></div>
      <div class="go">
        <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
          <path d="M7 17L17 7"></path>
          <path d="M9 7h8v8"></path>
        </svg>
      </div>
    </div>

    <div class="suggestion">
      <div class="title">iphone 14 pro max <b>case magsafe</b></div>
      <div class="go">
        <svg width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="#BDBDBD" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
          <path d="M7 17L17 7"></path>
          <path d="M9 7h8v8"></path>
        </svg>
      </div>
    </div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kb-toolbar">
      <button class="chip highlight">Max</button>
      <button class="chip">Mac</button>
      <button class="chip">Maximum</button>
    </div>

    <div class="kb-rows">
      <div class="kb-row" style="grid-template-columns: repeat(10, 1fr);">
        <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div>
        <div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
      </div>

      <div class="kb-row" style="grid-template-columns: repeat(9, 1fr); padding: 0 40px;">
        <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div>
        <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
      </div>

      <div class="kb-row" style="grid-template-columns: 120px repeat(8, 1fr) 120px; align-items: center;">
        <div class="key darkcircle">
          <svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="#EDEDED" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
            <path d="M7 15l-4-3 4-3"></path>
          </svg>
        </div>
        <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div>
        <div class="key">b</div><div class="key">n</div><div class="key">m</div>
        <div class="key darkcircle">
          <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#EDEDED" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
            <path d="M21 12H8"></path>
            <path d="M12 6l-6 6 6 6"></path>
          </svg>
        </div>
      </div>

      <div class="kb-row" style="grid-template-columns: 120px 1fr 120px 5fr 1fr 120px;">
        <div class="key circle">?123</div>
        <div class="key">,</div>
        <div class="key darkcircle">
          <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#EDEDED" stroke-width="2">
            <circle cx="12" cy="12" r="3.2"></circle>
            <path d="M12 2v2M12 20v2M2 12h2M20 12h2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M17.7 6.3l1.4-1.4M4.9 19.1l1.4-1.4"></path>
          </svg>
        </div>
        <div class="key space"></div>
        <div class="key">.</div>
        <div class="key circle">
          <svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="#2B2B2B" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round">
            <circle cx="10.5" cy="10.5" r="5"></circle>
            <path d="M15.5 15.5L20 20"></path>
          </svg>
        </div>
      </div>
    </div>
  </div>

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