File size: 9,138 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Location Search UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #212121;
  }

  /* Top app bar */
  .appbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 200px;
    background: #0B5F6D;
  }

  .status-bar {
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: #fff;
    font-size: 34px;
    letter-spacing: 0.5px;
  }
  .status-spacer { flex: 1; }
  .status-icons svg { margin-left: 22px; }

  .search-row {
    height: 128px;
    display: flex;
    align-items: center;
    padding: 0 24px;
  }
  .search-row input {
    flex: 1;
    height: 72px;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 52px;
    font-weight: 500;
    padding-left: 24px;
  }
  .icon-btn {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: default;
  }
  .icon-btn svg { fill: none; stroke: #ffffff; stroke-width: 5; }

  /* Content list */
  .content {
    position: absolute;
    top: 200px;
    left: 0;
    right: 0;
    bottom: 900px; /* leave space for keyboard */
    overflow-y: hidden;
    background: #fff;
  }

  .location-row {
    height: 120px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    border-bottom: 1px solid #E0E0E0;
    color: #616161;
    font-size: 40px;
    background: #FAFAFA;
  }
  .location-row svg { margin-right: 24px; stroke: #0B5F6D; }

  .item {
    padding: 30px 32px;
    border-bottom: 1px solid #E0E0E0;
  }
  .item-title {
    font-size: 48px;
    font-weight: 600;
    color: #3E3E3E;
    margin-bottom: 10px;
  }
  .item-sub {
    font-size: 34px;
    color: #777777;
  }

  /* Keyboard */
  .keyboard {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1080px;
    height: 900px;
    background: #141414;
    border-top: 1px solid #2A2A2A;
    box-sizing: border-box;
    padding: 18px 18px 32px 18px;
  }

  .suggestions {
    height: 110px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    color: #E0E0E0;
  }
  .suggest-left, .suggest-right {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pill {
    background: #2A2A2A;
    color: #EDEDED;
    font-size: 36px;
    padding: 12px 26px;
    border-radius: 30px;
    margin: 0 12px;
  }

  .keys-row {
    display: flex;
    padding: 8px 6px;
  }
  .key {
    flex: 1;
    height: 120px;
    margin: 6px;
    background: #242424;
    border-radius: 24px;
    color: #F1F1F1;
    font-size: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px #2F2F2F;
  }
  .key.small { flex: 0.9; }
  .key.wide { flex: 4.5; }
  .key.action { background: #CFE1F8; color: #1C2B3A; }
  .key.gray { background: #78828A; color: #ffffff; }
  .key.icon svg { stroke: #EDEDED; }
  .key.icon.fill svg { fill: #EDEDED; stroke: none; }

  .gesture-bar {
    position: absolute;
    bottom: 12px;
    left: 50%;
    width: 240px;
    height: 10px;
    background: #EDEDED;
    border-radius: 6px;
    transform: translateX(-50%);
    opacity: 0.85;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Top app bar -->
  <div class="appbar">
    <div class="status-bar">
      <div>10:16</div>
      <div class="status-spacer"></div>
      <div class="status-icons">
        <!-- Notifications placeholder -->
        <svg width="30" height="30" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" stroke="#fff" fill="none"/></svg>
        <!-- Network -->
        <svg width="34" height="34" viewBox="0 0 24 24">
          <path d="M2 9c4-4 16-4 20 0M5 12c3-3 11-3 14 0M8 15c2-2 6-2 8 0M12 18h0" stroke="#fff" fill="none" stroke-linecap="round"/>
        </svg>
        <!-- Battery -->
        <svg width="46" height="34" viewBox="0 0 28 16">
          <rect x="1" y="3" width="22" height="10" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"/>
          <rect x="3" y="5" width="18" height="6" rx="1" ry="1" fill="#fff"/>
          <rect x="24" y="6" width="3" height="4" rx="1" fill="#fff"/>
        </svg>
      </div>
    </div>

    <div class="search-row">
      <!-- Back arrow -->
      <div class="icon-btn">
        <svg width="48" height="48" viewBox="0 0 24 24">
          <path d="M15 6l-6 6 6 6" />
        </svg>
      </div>
      <input type="text" value="Hamilton, ON" />
      <!-- Clear (X) -->
      <div class="icon-btn">
        <svg width="48" height="48" viewBox="0 0 24 24">
          <path d="M6 6l12 12M18 6L6 18" />
        </svg>
      </div>
    </div>
  </div>

  <!-- Main content -->
  <div class="content">
    <div class="location-row">
      <svg width="50" height="50" viewBox="0 0 24 24" fill="none">
        <path d="M3 11l18-7-7 18-2-7-7-4z" stroke-width="2" stroke-linejoin="round" />
      </svg>
      <span>Enable location to see nearby cities</span>
    </div>

    <div class="item">
      <div class="item-title">Hamilton, ON</div>
      <div class="item-sub">Canada</div>
    </div>

    <div class="item">
      <div class="item-title">London, ON</div>
      <div class="item-sub">Canada</div>
    </div>

    <div class="item">
      <div class="item-title">Washington, D.C.</div>
      <div class="item-sub">United States</div>
    </div>

    <div class="item">
      <div class="item-title">London</div>
      <div class="item-sub">United Kingdom</div>
    </div>

    <div class="item">
      <div class="item-title">London Gatwick Airport</div>
      <div class="item-sub">United Kingdom</div>
    </div>

    <div class="item" style="border-bottom: none;">
      <div class="item-title">Phoenix-Tempe, AZ</div>
      <div class="item-sub">United States</div>
    </div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="suggestions">
      <div class="suggest-left">
        <!-- grid/dots icon -->
        <svg width="54" height="54" viewBox="0 0 24 24" class="fill">
          <circle cx="5" cy="5" r="2"/>
          <circle cx="12" cy="5" r="2"/>
          <circle cx="19" cy="5" r="2"/>
          <circle cx="5" cy="12" r="2"/>
          <circle cx="12" cy="12" r="2"/>
          <circle cx="19" cy="12" r="2"/>
          <circle cx="5" cy="19" r="2"/>
          <circle cx="12" cy="19" r="2"/>
          <circle cx="19" cy="19" r="2"/>
        </svg>
      </div>
      <div class="pill">ON</div>
      <div class="pill">IN</div>
      <div class="pill">ONE</div>
      <div class="suggest-right">
        <!-- mic icon -->
        <svg width="54" height="54" viewBox="0 0 24 24" class="fill">
          <rect x="9" y="4" width="6" height="10" rx="3"/>
          <path d="M5 11a7 7 0 0 0 14 0M12 18v3" fill="none" stroke="#EDEDED" stroke-width="2"/>
        </svg>
      </div>
    </div>

    <div class="keys-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="keys-row">
      <div class="key small"></div>
      <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 class="key small"></div>
    </div>

    <div class="keys-row">
      <div class="key gray small">?123</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 icon small">
        <!-- backspace -->
        <svg width="46" height="46" viewBox="0 0 24 24">
          <path d="M6 5l-4 7 4 7h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H6z" fill="none"/>
          <path d="M10 9l6 6M16 9l-6 6" stroke-width="2"/>
        </svg>
      </div>
    </div>

    <div class="keys-row">
      <div class="key gray small">?123</div>
      <div class="key icon small">
        <!-- emoji -->
        <svg width="40" height="40" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9" fill="none"/>
          <circle cx="9" cy="10" r="1.4"/>
          <circle cx="15" cy="10" r="1.4"/>
          <path d="M8 15c2 2 6 2 8 0" stroke-width="2" fill="none"/>
        </svg>
      </div>
      <div class="key wide">space</div>
      <div class="key">.</div>
      <div class="key action icon small">
        <!-- search icon -->
        <svg width="40" height="40" viewBox="0 0 24 24">
          <circle cx="11" cy="11" r="6" fill="none" stroke="#1C2B3A" stroke-width="2"/>
          <path d="M16 16l5 5" stroke="#1C2B3A" stroke-width="2" />
        </svg>
      </div>
    </div>

    <div class="gesture-bar"></div>
  </div>

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