File size: 15,799 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Outbound Trip UI</title>
<style>
  body { margin:0; padding:0; background: transparent; }
  #render-target {
    width:1080px; height:2400px; position:relative; overflow:hidden;
    background:#F3F4F6; border-radius:0; box-shadow:none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color:#1f2d2f;
  }
  /* Status bar */
  .status-bar {
    height:84px; background:#0F5E68; color:#fff; display:flex; align-items:center;
    padding:0 36px; font-size:34px; letter-spacing:0.5px;
  }
  .status-right { margin-left:auto; display:flex; gap:22px; align-items:center; }
  .header {
    height:172px; background:#0F5E68; color:#fff; display:flex; align-items:center;
    padding:0 36px; box-sizing:border-box;
  }
  .header-title { font-size:58px; font-weight:600; margin-left:20px; }
  .header-actions { margin-left:auto; font-size:40px; font-weight:600; opacity:0.95; }
  .tabs {
    background:#0F5E68; color:#d7eef2; padding:0 24px 20px 24px;
    display:flex; gap:36px; align-items:flex-end; box-sizing:border-box;
  }
  .tab { font-size:34px; text-transform:uppercase; padding:24px 8px; }
  .tab.active { color:#fff; border-bottom:6px solid #fff; }
  /* Cards list */
  .list { padding:20px 20px 120px 20px; }
  .card {
    background:#fff; border:1px solid #DADFE3; border-radius:24px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.04);
    margin:18px 8px; padding:24px; box-sizing:border-box;
  }
  .tag-row { display:flex; gap:14px; margin-bottom:14px; }
  .tag {
    padding:16px 22px; border-radius:24px; font-size:32px; font-weight:600;
  }
  .tag.flix { background:#D9F5A7; color:#2d5c06; }
  .tag.grey { background:#CFE7F2; color:#235a66; }
  .detail-row { display:flex; align-items:flex-start; gap:18px; }
  .time-col { min-width:190px; }
  .time { font-size:52px; font-weight:700; color:#2a3c3f; }
  .ampm { font-size:28px; color:#6b7a7d; margin-left:6px; }
  .place { font-size:40px; color:#374a4d; }
  .minor { font-size:30px; color:#6b7a7d; }
  .route-icon { width:26px; height:100px; }
  .chev { margin-left:auto; opacity:0.6; }
  .divider { height:1px; background:#E7EAED; margin:18px 0; }
  .info-row { display:flex; align-items:center; justify-content:space-between; }
  .pill {
    display:inline-flex; align-items:center; gap:14px; padding:16px 22px;
    border:1px solid #DADFE3; border-radius:999px; font-size:32px; color:#3c4d50;
    background:#fff;
  }
  .icons { display:flex; gap:22px; align-items:center; color:#6b7a7d; font-size:30px; }
  .meta { margin-top:14px; display:flex; align-items:center; gap:26px; color:#6b7a7d; font-size:32px; }
  .price-area { display:flex; align-items:center; justify-content:flex-end; gap:20px; }
  .price { font-size:64px; color:#0F5E68; font-weight:800; }
  .price small { font-size:40px; vertical-align:top; }
  .per { font-size:28px; color:#7b8b8e; text-align:right; }
  .badge { font-size:30px; color:#0F7A85; font-weight:700; margin-top:2px; text-align:right; }
  .alert { font-size:30px; color:#B45A1F; font-weight:700; text-align:right; }
  .circle-btn {
    width:120px; height:120px; background:#0F5E68; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  /* Simple bottom gesture bar */
  .gesture {
    position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
    width:420px; height:14px; background:#C9CDD1; border-radius:14px;
  }
  /* SVG helpers */
  .svg { display:inline-block; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>10:24</div>
    <div class="status-right">
      <!-- placeholders for status icons -->
      <svg class="svg" width="42" height="42"><circle cx="21" cy="21" r="8" fill="#fff" opacity="0.9"/></svg>
      <svg class="svg" width="42" height="42"><rect x="6" y="12" width="30" height="18" rx="3" fill="#fff" opacity="0.9"/></svg>
      <svg class="svg" width="42" height="42"><path d="M6 30 L36 12" stroke="#fff" stroke-width="4"/></svg>
      <svg class="svg" width="42" height="42"><circle cx="21" cy="21" r="3" fill="#fff"/></svg>
      <svg class="svg" width="42" height="42"><path d="M6 18 H30" stroke="#fff" stroke-width="4"/></svg>
      <svg class="svg" width="42" height="42"><rect x="8" y="10" width="24" height="20" rx="3" fill="none" stroke="#fff" stroke-width="4"/><rect x="32" y="16" width="4" height="8" fill="#fff"/></svg>
    </div>
  </div>

  <!-- Header -->
  <div class="header">
    <svg class="svg" width="64" height="64" viewBox="0 0 48 48">
      <path d="M28 10 L12 24 L28 38" stroke="#fff" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    <div class="header-title">Outbound trip</div>
    <div class="header-actions">FILTER</div>
  </div>

  <!-- Tabs -->
  <div class="tabs">
    <div class="tab">Wed, Oct 25</div>
    <div class="tab active">Thu, Oct 26</div>
    <div class="tab">Fri, Oct 27</div>
    <div class="tab">Sat, Oct 28</div>
  </div>

  <!-- List -->
  <div class="list">
    <!-- Card 1 -->
    <div class="card">
      <div class="tag-row">
        <div class="tag flix">FlixBus</div>
        <div class="tag grey">Greyhound</div>
      </div>

      <div class="detail-row">
        <div class="time-col">
          <div class="time">10:55<span class="ampm">AM</span></div>
          <div class="time">10:45<span class="ampm">AM +1</span></div>
        </div>
        <svg class="route-icon" viewBox="0 0 6 100">
          <circle cx="3" cy="20" r="3" fill="#8D9AA0"/>
          <rect x="2.5" y="20" width="1" height="60" fill="#BFC7CC"/>
          <circle cx="3" cy="80" r="3" fill="#8D9AA0"/>
        </svg>
        <div style="flex:1">
          <div class="place">Hamilton (McMaster)</div>
          <div class="place">Richmond Bus Station</div>
        </div>
        <svg class="chev" width="44" height="44" viewBox="0 0 24 24">
          <path d="M6 9 L12 15 L18 9" stroke="#6b7a7d" stroke-width="2.5" fill="none" stroke-linecap="round"/>
        </svg>
      </div>

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

      <div class="info-row">
        <div class="pill">
          <svg width="30" height="30" viewBox="0 0 24 24">
            <path d="M5 20 L8 13 L11 20" stroke="#3c4d50" stroke-width="2" fill="none" stroke-linecap="round"/>
            <circle cx="8" cy="9" r="3" fill="#3c4d50"/>
          </svg>
          <span>2 transfers</span>
          <svg width="28" height="28" viewBox="0 0 24 24"><path d="M6 9 L18 9" stroke="#3c4d50" stroke-width="2"/><path d="M6 15 L18 15" stroke="#3c4d50" stroke-width="2"/></svg>
        </div>
        <div class="price-area">
          <div>
            <div class="price">$161<small>.40</small></div>
            <div class="per">per person</div>
          </div>
          <div class="circle-btn">
            <svg width="50" height="50" viewBox="0 0 24 24">
              <path d="M9 6 L15 12 L9 18" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
            </svg>
          </div>
        </div>
      </div>

      <div class="meta">
        <span>23:50 Hrs.</span>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M3 8 H21 V16 H3 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><circle cx="6" cy="12" r="1.5" fill="#6b7a7d"/></svg>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M6 6 H18 V12 H6 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><path d="M10 12 V18" stroke="#6b7a7d" stroke-width="2"/></svg>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M5 19 L19 5" stroke="#6b7a7d" stroke-width="2"/></svg>
      </div>
    </div>

    <!-- Card 2 -->
    <div class="card">
      <div class="tag-row">
        <div class="tag flix">FlixBus</div>
        <div class="tag grey">Greyhound</div>
      </div>

      <div class="detail-row">
        <div class="time-col">
          <div class="time">10:55<span class="ampm">AM</span></div>
          <div class="time">11:05<span class="ampm">AM +1</span></div>
        </div>
        <svg class="route-icon" viewBox="0 0 6 100">
          <circle cx="3" cy="20" r="3" fill="#8D9AA0"/>
          <rect x="2.5" y="20" width="1" height="60" fill="#BFC7CC"/>
          <circle cx="3" cy="80" r="3" fill="#8D9AA0"/>
        </svg>
        <div style="flex:1">
          <div class="place">Hamilton (McMaster)</div>
          <div class="place">Richmond (W Leigh St)</div>
        </div>
        <svg class="chev" width="44" height="44" viewBox="0 0 24 24">
          <path d="M6 9 L12 15 L18 9" stroke="#6b7a7d" stroke-width="2.5" fill="none" stroke-linecap="round"/>
        </svg>
      </div>

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

      <div class="info-row">
        <div class="pill">
          <svg width="30" height="30" viewBox="0 0 24 24">
            <path d="M5 20 L8 13 L11 20" stroke="#3c4d50" stroke-width="2" fill="none" stroke-linecap="round"/>
            <circle cx="8" cy="9" r="3" fill="#3c4d50"/>
          </svg>
          <span>3 transfers</span>
          <svg width="28" height="28" viewBox="0 0 24 24"><path d="M6 9 L18 9" stroke="#3c4d50" stroke-width="2"/><path d="M6 15 L18 15" stroke="#3c4d50" stroke-width="2"/></svg>
        </div>
        <div class="price-area">
          <div>
            <div class="price">$154<small>.12</small></div>
            <div class="per">per person</div>
            <div class="badge">LOWEST PRICE</div>
          </div>
          <div class="circle-btn">
            <svg width="50" height="50" viewBox="0 0 24 24">
              <path d="M9 6 L15 12 L9 18" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
            </svg>
          </div>
        </div>
      </div>

      <div class="meta">
        <span>24:10 Hrs.</span>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M3 8 H21 V16 H3 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><circle cx="6" cy="12" r="1.5" fill="#6b7a7d"/></svg>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M12 6 V18" stroke="#6b7a7d" stroke-width="2"/><path d="M6 10 H18" stroke="#6b7a7d" stroke-width="2"/></svg>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M6 17 L18 7" stroke="#6b7a7d" stroke-width="2"/></svg>
      </div>
    </div>

    <!-- Card 3 -->
    <div class="card">
      <div class="tag-row">
        <div class="tag flix">FlixBus</div>
        <div class="tag grey">Greyhound</div>
      </div>

      <div class="detail-row">
        <div class="time-col">
          <div class="time">5:55<span class="ampm">PM</span></div>
          <div class="time">8:10<span class="ampm">AM +2</span></div>
        </div>
        <svg class="route-icon" viewBox="0 0 6 100">
          <circle cx="3" cy="20" r="3" fill="#8D9AA0"/>
          <rect x="2.5" y="20" width="1" height="60" fill="#BFC7CC"/>
          <circle cx="3" cy="80" r="3" fill="#8D9AA0"/>
        </svg>
        <div style="flex:1">
          <div class="place">Hamilton (McMaster)</div>
          <div class="place">Henrico</div>
        </div>
        <svg class="chev" width="44" height="44" viewBox="0 0 24 24">
          <path d="M6 9 L12 15 L18 9" stroke="#6b7a7d" stroke-width="2.5" fill="none" stroke-linecap="round"/>
        </svg>
      </div>

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

      <div class="info-row">
        <div class="pill">
          <svg width="30" height="30" viewBox="0 0 24 24">
            <path d="M5 20 L8 13 L11 20" stroke="#3c4d50" stroke-width="2" fill="none" stroke-linecap="round"/>
            <circle cx="8" cy="9" r="3" fill="#3c4d50"/>
          </svg>
          <span>4 transfers</span>
          <svg width="28" height="28" viewBox="0 0 24 24"><path d="M6 9 L18 9" stroke="#3c4d50" stroke-width="2"/><path d="M6 15 L18 15" stroke="#3c4d50" stroke-width="2"/></svg>
        </div>
        <div class="price-area">
          <div>
            <div class="alert">Almost full</div>
            <div class="price">$223<small>.02</small></div>
            <div class="per">per person</div>
          </div>
          <div class="circle-btn">
            <svg width="50" height="50" viewBox="0 0 24 24">
              <path d="M9 6 L15 12 L9 18" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
            </svg>
          </div>
        </div>
      </div>

      <div class="meta">
        <span>38:15 Hrs.</span>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M5 18 H19" stroke="#6b7a7d" stroke-width="2"/><circle cx="8" cy="12" r="2" fill="#6b7a7d"/><circle cx="12" cy="12" r="2" fill="#6b7a7d"/><circle cx="16" cy="12" r="2" fill="#6b7a7d"/></svg>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M8 6 H16 V14 H8 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><path d="M10 18 H14" stroke="#6b7a7d" stroke-width="2"/></svg>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M6 17 L18 7" stroke="#6b7a7d" stroke-width="2"/></svg>
      </div>
    </div>

    <!-- Card 4 -->
    <div class="card">
      <div class="tag-row">
        <div class="tag flix">FlixBus</div>
        <div class="tag grey">Greyhound</div>
      </div>

      <div class="detail-row">
        <div class="time-col">
          <div class="time">8:50<span class="ampm">PM</span></div>
          <div class="time">7:45<span class="ampm">PM +1</span></div>
        </div>
        <svg class="route-icon" viewBox="0 0 6 100">
          <circle cx="3" cy="20" r="3" fill="#8D9AA0"/>
          <rect x="2.5" y="20" width="1" height="60" fill="#BFC7CC"/>
          <circle cx="3" cy="80" r="3" fill="#8D9AA0"/>
        </svg>
        <div style="flex:1">
          <div class="place">Hamilton (McMaster)</div>
          <div class="place">Richmond Bus Station</div>
        </div>
        <svg class="chev" width="44" height="44" viewBox="0 0 24 24">
          <path d="M6 9 L12 15 L18 9" stroke="#6b7a7d" stroke-width="2.5" fill="none" stroke-linecap="round"/>
        </svg>
      </div>

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

      <div class="info-row">
        <div class="pill">
          <svg width="30" height="30" viewBox="0 0 24 24">
            <path d="M5 20 L8 13 L11 20" stroke="#3c4d50" stroke-width="2" fill="none" stroke-linecap="round"/>
            <circle cx="8" cy="9" r="3" fill="#3c4d50"/>
          </svg>
          <span>3 transfers</span>
          <svg width="28" height="28" viewBox="0 0 24 24"><path d="M6 9 L18 9" stroke="#3c4d50" stroke-width="2"/><path d="M6 15 L18 15" stroke="#3c4d50" stroke-width="2"/></svg>
        </div>
        <div class="price-area">
          <div>
            <div class="alert">Only 4 seats available!</div>
            <div class="price">$214<small>.10</small></div>
            <div class="per">per person</div>
          </div>
          <div class="circle-btn">
            <svg width="50" height="50" viewBox="0 0 24 24">
              <path d="M9 6 L15 12 L9 18" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
            </svg>
          </div>
        </div>
      </div>

      <div class="meta">
        <span>22:55 Hrs.</span>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M3 8 H21 V16 H3 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><circle cx="6" cy="12" r="1.5" fill="#6b7a7d"/></svg>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M6 6 H18 V12 H6 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><path d="M10 12 V18" stroke="#6b7a7d" stroke-width="2"/></svg>
        <svg width="34" height="34" viewBox="0 0 24 24"><path d="M5 19 L19 5" stroke="#6b7a7d" stroke-width="2"/></svg>
      </div>
    </div>
  </div>

  <div class="gesture"></div>
</div>
</body>
</html>