File size: 12,712 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Choose start location UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
  }

  /* Status bar */
  .statusbar {
    height: 90px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #222;
    font-size: 34px;
  }
  .status-left { display: flex; align-items: center; gap: 18px; }
  .status-center { color: #777; letter-spacing: 4px; font-size: 28px; }
  .status-right { display: flex; align-items: center; gap: 22px; }
  .sb-icon { width: 34px; height: 34px; }

  /* Search header */
  .header {
    padding: 18px 24px 12px 24px;
  }
  .search-row {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .back-btn {
    width: 72px;
    height: 72px;
    border-radius: 36px;
    display: flex; align-items: center; justify-content: center;
  }
  .search-bar {
    flex: 1;
    height: 96px;
    border: 1px solid #DADCE0;
    border-radius: 48px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: #5F6368;
    font-size: 36px;
  }
  .search-text { flex: 1; }
  .mic {
    width: 52px; height: 52px;
    border-radius: 26px;
    display: flex; align-items: center; justify-content: center;
  }

  /* List */
  .list {
    margin-top: 12px;
  }
  .item {
    display: flex; align-items: center;
    padding: 28px 32px;
    border-bottom: 1px solid #E6E6E6;
  }
  .icon-wrap {
    width: 64px; height: 64px;
    border-radius: 32px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 28px;
  }
  .icon-wrap.blue { background: #E8F0FE; }
  .icon-wrap.gray { background: #F1F3F4; }
  .item-text { flex: 1; }
  .title { font-size: 40px; color: #202124; }
  .subtitle { font-size: 30px; color: #6B6F73; margin-top: 6px; }
  .divider-thick {
    height: 14px;
    background: #F1F3F4;
    border-bottom: 1px solid #E6E6E6;
  }

  /* Keyboard (dark) */
  .keyboard {
    position: absolute;
    left: 0; right: 0; bottom: 40px;
    background: #1F2125;
    height: 820px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
    color: #EDEDED;
    display: flex;
    flex-direction: column;
  }
  .kb-topbar {
    height: 110px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .kb-pill {
    min-width: 82px;
    height: 62px;
    background: #2B2D31;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #F5F5F5;
    padding: 0 14px;
  }
  .kb-rows {
    flex: 1;
    padding: 10px 30px 20px 30px;
  }
  .row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
  }
  .key {
    width: 92px;
    height: 110px;
    background: #2B2D31;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 42px;
    color: #FAFAFA;
  }
  .key.wide { width: 140px; }
  .space { flex: 1; min-width: 420px; }
  .circle-key {
    width: 96px; height: 96px; border-radius: 48px;
    background: #CFE0F8;
    display: flex; align-items: center; justify-content: center;
    color: #1A73E8;
  }

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

  <!-- Status bar -->
  <div class="statusbar">
    <div class="status-left">10:58</div>
    <div class="status-center">• • • • •</div>
    <div class="status-right">
      <!-- Location icon -->
      <svg class="sb-icon" viewBox="0 0 24 24">
        <path fill="#444" d="M12 2a7 7 0 0 0-7 7c0 5.5 7 13 7 13s7-7.5 7-13a7 7 0 0 0-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/>
      </svg>
      <!-- Bell off -->
      <svg class="sb-icon" viewBox="0 0 24 24">
        <path fill="#444" d="M3 4l17 17-1.5 1.5L1.5 5.5 3 4zm18.5 9c0 1.2-2.5 2.2-5 2.5L6 7.9c.6-3 2.9-4.9 6-4.9 3.3 0 6 2.7 6 6v2zM12 22a2.5 2.5 0 0 0 2.3-1.6L12 18.1l-2.3 2.3A2.5 2.5 0 0 0 12 22z"/>
      </svg>
      <!-- Wi-Fi -->
      <svg class="sb-icon" viewBox="0 0 24 24">
        <path fill="#444" d="M2 8a14 14 0 0 1 20 0l-1.5 1.6a12 12 0 0 0-17 0L2 8zm4 4a9 9 0 0 1 12 0l-1.5 1.6a7 7 0 0 0-9 0L6 12zm6 6 2.2-2.2a3 3 0 0 0-4.4 0L12 18z"/>
      </svg>
      <!-- Battery -->
      <svg class="sb-icon" viewBox="0 0 24 24">
        <rect x="2" y="6" width="16" height="12" rx="2" fill="#444"></rect>
        <rect x="18" y="10" width="3" height="4" fill="#444"></rect>
        <rect x="4" y="8" width="12" height="8" fill="#76C043"></rect>
      </svg>
    </div>
  </div>

  <!-- Search header -->
  <div class="header">
    <div class="search-row">
      <div class="back-btn">
        <svg width="36" height="36" viewBox="0 0 24 24">
          <path d="M15 5 8 12l7 7" stroke="#5F6368" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
        </svg>
      </div>
      <div class="search-bar">
        <div class="search-text">Choose start location</div>
        <div class="mic">
          <svg width="28" height="28" viewBox="0 0 24 24">
            <path d="M12 3a3 3 0 0 1 3 3v4a3 3 0 0 1-6 0V6a3 3 0 0 1 3-3zm-5 8a5 5 0 0 0 10 0M12 16v3" stroke="#5F6368" stroke-width="2" fill="none" stroke-linecap="round"></path>
          </svg>
        </div>
      </div>
    </div>
  </div>

  <!-- List content -->
  <div class="list">
    <div class="item">
      <div class="icon-wrap blue">
        <svg width="36" height="36" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="7" stroke="#1A73E8" stroke-width="2" fill="none"></circle>
          <circle cx="12" cy="12" r="2.5" fill="#1A73E8"></circle>
        </svg>
      </div>
      <div class="item-text">
        <div class="title">Your location</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-wrap gray">
        <svg width="36" height="36" viewBox="0 0 24 24">
          <path d="M12 2c-4 0-6 3-6 7 0 6 6 11 6 11s6-5 6-11c0-4-2-7-6-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z" fill="#5F6368"></path>
        </svg>
      </div>
      <div class="item-text">
        <div class="title">Choose on map</div>
      </div>
    </div>

    <div class="divider-thick"></div>

    <div class="item">
      <div class="icon-wrap gray">
        <svg width="36" height="36" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="8" stroke="#6B6F73" stroke-width="2" fill="none"></circle>
          <path d="M12 7v5l3 2" stroke="#6B6F73" stroke-width="2" fill="none" stroke-linecap="round"></path>
        </svg>
      </div>
      <div class="item-text">
        <div class="title">Dawson Creek</div>
        <div class="subtitle">BC, Canada</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-wrap gray">
        <svg width="36" height="36" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="8" stroke="#6B6F73" stroke-width="2" fill="none"></circle>
          <path d="M12 7v5l3 2" stroke="#6B6F73" stroke-width="2" fill="none" stroke-linecap="round"></path>
        </svg>
      </div>
      <div class="item-text">
        <div class="title">Pouce Coupe Museum</div>
        <div class="subtitle">49th Avenue, Pouce Coupe, BC, Canada</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-wrap gray">
        <svg width="36" height="36" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="8" stroke="#6B6F73" stroke-width="2" fill="none"></circle>
          <path d="M12 7v5l3 2" stroke="#6B6F73" stroke-width="2" fill="none" stroke-linecap="round"></path>
        </svg>
      </div>
      <div class="item-text">
        <div class="title">1100 Alaska Avenue</div>
        <div class="subtitle">Dawson Creek, BC, Canada</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-wrap gray">
        <svg width="36" height="36" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="8" stroke="#6B6F73" stroke-width="2" fill="none"></circle>
          <path d="M12 7v5l3 2" stroke="#6B6F73" stroke-width="2" fill="none" stroke-linecap="round"></path>
        </svg>
      </div>
      <div class="item-text">
        <div class="title">South Peace Community Arts Council</div>
        <div class="subtitle">Alaska Avenue, Dawson Creek, BC, Canada</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-wrap gray">
        <svg width="36" height="36" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="8" stroke="#6B6F73" stroke-width="2" fill="none"></circle>
          <path d="M12 7v5l3 2" stroke="#6B6F73" stroke-width="2" fill="none" stroke-linecap="round"></path>
        </svg>
      </div>
      <div class="item-text">
        <div class="title">933-927 British Columbia 97</div>
        <div class="subtitle">Dawson Creek, BC, Canada</div>
      </div>
    </div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kb-topbar">
      <div class="kb-pill">
        <svg width="28" height="28" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9" fill="none" stroke="#EDEDED" stroke-width="2"></circle>
          <circle cx="9" cy="10" r="1.6" fill="#EDEDED"></circle>
          <circle cx="15" cy="10" r="1.6" fill="#EDEDED"></circle>
          <path d="M8 14c2.5 2.2 5.5 2.2 8 0" stroke="#EDEDED" stroke-width="2" fill="none" stroke-linecap="round"></path>
        </svg>
      </div>
      <div class="kb-pill">GIF</div>
      <div class="kb-pill">
        <svg width="28" height="28" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9" stroke="#EDEDED" stroke-width="2" fill="none"></circle>
          <circle cx="12" cy="12" r="3" fill="#EDEDED"></circle>
        </svg>
      </div>
      <div class="kb-pill">
        <svg width="28" height="28" viewBox="0 0 24 24">
          <path d="M4 6h8v4H4zm0 8h12v4H4z" fill="#EDEDED"></path>
        </svg>
      </div>
      <div class="kb-pill">
        <svg width="28" height="28" viewBox="0 0 24 24">
          <rect x="3" y="3" width="18" height="14" rx="2" fill="#EDEDED"></rect>
          <rect x="3" y="18" width="18" height="3" rx="1.5" fill="#EDEDED"></rect>
        </svg>
      </div>
      <div class="kb-pill">
        <svg width="28" height="28" viewBox="0 0 24 24">
          <path d="M12 3a3 3 0 0 1 3 3v4a3 3 0 0 1-6 0V6a3 3 0 0 1 3-3zm-5 8a5 5 0 0 0 10 0" stroke="#EDEDED" stroke-width="2" fill="none"></path>
        </svg>
      </div>
    </div>

    <div class="kb-rows">
      <div class="row">
        <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="row">
        <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="row">
        <div class="key wide"></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 wide">
          <svg width="34" height="34" viewBox="0 0 24 24">
            <path d="M16 8l-6 6m0-6l6 6" stroke="#FAFAFA" stroke-width="2" fill="none" stroke-linecap="round"></path>
          </svg>
        </div>
      </div>
      <div class="row">
        <div class="circle-key">?123</div>
        <div class="key"></div>
        <div class="key">,</div>
        <div class="key space"></div>
        <div class="key">.</div>
        <div class="key">
          <svg width="30" height="30" viewBox="0 0 24 24">
            <path d="M12 3a3 3 0 0 1 3 3v4a3 3 0 0 1-6 0V6a3 3 0 0 1 3-3zm-5 8a5 5 0 0 0 10 0" stroke="#FAFAFA" stroke-width="2" fill="none"></path>
          </svg>
        </div>
        <div class="circle-key">
          <svg width="32" height="32" viewBox="0 0 24 24">
            <circle cx="11" cy="11" r="8" stroke="#1A73E8" stroke-width="2" fill="none"></circle>
            <path d="M20 20l-3-3" stroke="#1A73E8" stroke-width="2" stroke-linecap="round"></path>
          </svg>
        </div>
      </div>
    </div>
  </div>

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