File size: 7,997 Bytes
fa881a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Trips UI</title>
<style>
  body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif; color:#111; }
  #render-target {
    position: relative;
    overflow: hidden;
    width:1080px;
    height:2400px;
    background:#FFFFFF;
  }

  .status-bar {
    height:110px;
    padding:0 36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#333;
    font-size:34px;
  }
  .status-right {
    display:flex; gap:22px; align-items:center;
  }
  .dot { width:10px; height:10px; background:#888; border-radius:50%; display:inline-block; }
  .battery {
    width:44px; height:24px; border:3px solid #444; border-radius:6px; position:relative;
  }
  .battery:after {
    content:""; position:absolute; right:-8px; top:4px; width:6px; height:12px; background:#444; border-radius:2px;
  }
  .battery .lvl { position:absolute; left:3px; top:3px; bottom:3px; right:10px; background:#444; border-radius:2px; }

  .content { padding: 10px 40px 0 40px; }
  .header-row {
    display:flex; align-items:center; justify-content:space-between;
    margin-top:12px;
  }
  .title {
    font-size:64px; font-weight:700; letter-spacing:-0.5px; margin:30px 0 20px 0;
  }
  .top-actions { display:flex; align-items:center; gap:28px; }
  .icon-btn { width:56px; height:56px; display:flex; align-items:center; justify-content:center; }

  .section-row {
    display:flex; align-items:center; justify-content:space-between;
    margin-top:30px;
  }
  .section-title { font-size:46px; font-weight:700; }
  .link { color:#0a84a1; font-size:36px; font-weight:600; }

  .stats-card {
    margin-top:22px;
    background:#fff;
    border-radius:26px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding:40px 44px;
    display:flex; align-items:center; justify-content:space-between;
  }
  .stats-left b { font-size:40px; display:block; margin-bottom:8px; }
  .subtle { color:#6f6f6f; }
  .email { color:#111; font-weight:700; }
  .stats-right { text-align:right; }
  .big-number { font-size:68px; font-weight:800; }
  .small-note { color:#7d7d7d; font-size:30px; }

  .tabs {
    margin-top:40px;
    border-bottom:1px solid #e6e6e6;
    display:flex; justify-content:space-between;
    padding: 0 8px;
  }
  .tab { padding:26px 0 22px; font-weight:700; color:#222; }
  .tab.inactive { color:#6d6d6d; font-weight:600; }
  .tab-indicator {
    height:6px; width:260px; background:#3a3a3a; border-radius:3px; margin-top:-6px;
  }

  .current-title { font-size:54px; font-weight:800; margin:44px 0 26px; }

  .trip-card {
    background:#E0E0E0; border:1px solid #BDBDBD;
    height:520px; border-radius:40px;
    display:flex; align-items:center; justify-content:center;
    color:#757575; font-size:34px; text-align:center;
    overflow:hidden;
  }

  .trip-info { margin:22px 8px 40px; }
  .trip-name { font-size:48px; font-weight:800; margin-bottom:8px; }
  .trip-dates { color:#6f6f6f; font-size:34px; }

  .bottom-bar {
    position:absolute; left:0; right:0; bottom:110px;
    height:180px; background:#fff; border-top:1px solid #e6e6e6;
    display:flex; justify-content:space-around; align-items:center;
  }
  .nav-item { display:flex; flex-direction:column; align-items:center; gap:12px; color:#6f6f6f; font-size:30px; }
  .nav-item .ico { width:56px; height:56px; display:flex; align-items:center; justify-content:center; }
  .active { color:#ff6a00; }

  .gesture-area {
    position:absolute; left:0; right:0; bottom:0; height:110px; background:#000;
    display:flex; align-items:center; justify-content:center;
  }
  .gesture-pill {
    width:260px; height:10px; background:#fff; opacity:0.9; border-radius:8px;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status bar -->
  <div class="status-bar">
    <div>5:56</div>
    <div class="status-right">
      <span class="dot"></span>
      <svg width="28" height="28" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" fill="#888"/></svg>
      <svg width="28" height="28" viewBox="0 0 24 24"><path d="M3 6h18M6 12h12M9 18h6" stroke="#666" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
      <svg width="28" height="28" viewBox="0 0 24 24"><path d="M13 3l8 4-8 4-8-4 8-4zm-8 8l8 4 8-4" stroke="#666" stroke-width="2" fill="none" stroke-linejoin="round"/></svg>
      <div class="battery"><div class="lvl"></div></div>
    </div>
  </div>

  <div class="content">
    <div class="header-row">
      <div class="title">Trips</div>
      <div class="top-actions">
        <!-- clock/history icon -->
        <div class="icon-btn">
          <svg width="44" height="44" viewBox="0 0 24 24">
            <circle cx="12" cy="12" r="9" stroke="#1f2937" stroke-width="2" fill="none"/>
            <path d="M12 7v5l3 2" stroke="#1f2937" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
          </svg>
        </div>
        <!-- kebab -->
        <div class="icon-btn">
          <svg width="32" height="32" viewBox="0 0 24 24">
            <circle cx="12" cy="5" r="2" fill="#1f2937"/>
            <circle cx="12" cy="12" r="2" fill="#1f2937"/>
            <circle cx="12" cy="19" r="2" fill="#1f2937"/>
          </svg>
        </div>
      </div>
    </div>

    <div class="section-row">
      <div class="section-title">Trip Stats</div>
      <div class="link">See all</div>
    </div>

    <div class="stats-card">
      <div class="stats-left">
        <b>Unlock more stats</b>
        <div class="subtle">Forward booking emails to</div>
        <div class="email">trips@kayak.com</div>
      </div>
      <div class="stats-right">
        <div class="big-number">0</div>
        <div class="small-note">days on the road</div>
      </div>
    </div>

    <div class="tabs">
      <div>
        <div class="tab">Upcoming (4)</div>
        <div class="tab-indicator"></div>
      </div>
      <div class="tab inactive">Past</div>
    </div>

    <div class="current-title">Current Trips</div>

    <div class="trip-card">
      [IMG: Seattle skyline photo]
    </div>
    <div class="trip-info">
      <div class="trip-name">Seattle Trip</div>
      <div class="trip-dates">Jan 24 – 26</div>
    </div>

    <div class="trip-card" style="height:420px; border-radius:36px; margin-top:16px;">
      [IMG: City skyline photo]
    </div>
  </div>

  <!-- Bottom navigation -->
  <div class="bottom-bar">
    <div class="nav-item">
      <div class="ico">
        <svg width="44" height="44" viewBox="0 0 24 24">
          <circle cx="11" cy="11" r="6" stroke="#6f6f6f" stroke-width="2" fill="none"/>
          <path d="M16 16l4 4" stroke="#6f6f6f" stroke-width="2" stroke-linecap="round"/>
        </svg>
      </div>
      <div>Search</div>
    </div>

    <div class="nav-item">
      <div class="ico">
        <svg width="46" height="46" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9" stroke="#6f6f6f" stroke-width="2" fill="none"/>
          <path d="M3 12h18M12 3v18" stroke="#6f6f6f" stroke-width="2" fill="none"/>
        </svg>
      </div>
      <div>Explore</div>
    </div>

    <div class="nav-item active">
      <div class="ico">
        <svg width="46" height="46" viewBox="0 0 24 24">
          <path d="M12 21s-7-4.35-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.65-7 10-7 10z" fill="#ff6a00"/>
        </svg>
      </div>
      <div>Trips</div>
    </div>

    <div class="nav-item">
      <div class="ico">
        <svg width="46" height="46" viewBox="0 0 24 24">
          <circle cx="12" cy="8" r="4" stroke="#6f6f6f" stroke-width="2" fill="none"/>
          <path d="M4 20a8 8 0 0 1 16 0" stroke="#6f6f6f" stroke-width="2" fill="none"/>
        </svg>
      </div>
      <div>Profile</div>
    </div>
  </div>

  <!-- Gesture bar area -->
  <div class="gesture-area">
    <div class="gesture-pill"></div>
  </div>
</div>
</body>
</html>