File size: 5,309 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Select passengers</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;
  }

  /* App bar */
  .appbar {
    position: relative;
    width: 100%;
    height: 220px;
    background: #0b5963;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 36px;
  }
  .appbar .title {
    font-size: 56px;
    font-weight: 600;
    margin-left: 24px;
  }
  .appbar .right {
    margin-left: auto;
  }
  .icon-btn {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .icon {
    width: 48px;
    height: 48px;
  }

  /* List / rows */
  .list {
    padding-top: 12px;
  }
  .row {
    display: flex;
    align-items: center;
    padding: 40px 40px;
    border-bottom: 1px solid #eaeaea;
  }
  .row .labels {
    flex: 1;
  }
  .primary {
    font-size: 46px;
    color: #424242;
  }
  .secondary {
    margin-top: 16px;
    font-size: 36px;
    color: #7a7a7a;
  }
  .qty {
    display: inline-flex;
    align-items: center;
    gap: 40px;
  }
  .qty .num {
    font-size: 48px;
    color: #5e5e5e;
    width: 60px;
    text-align: center;
  }
  .svg-action {
    width: 64px;
    height: 64px;
  }
  .action-active svg path { stroke: #0b5963; fill: none; }
  .action-disabled svg path { stroke: #9e9e9e; fill: none; }

  /* Bottom gesture bar */
  .gesture {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 18px;
    background: #d9d9d9;
    border-radius: 12px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- App Bar -->
  <div class="appbar">
    <div class="icon-btn">
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M15 18l-6-6 6-6" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="title">Select passengers</div>
    <div class="right icon-btn">
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M20 6l-11 11-5-5" stroke="#ffffff" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
  </div>

  <!-- List Content -->
  <div class="list">

    <!-- Adult -->
    <div class="row">
      <div class="labels">
        <div class="primary">Adult</div>
      </div>
      <div class="qty">
        <div class="action-active">
          <svg class="svg-action" viewBox="0 0 24 24">
            <path d="M5 12h14" stroke-width="2.2" stroke-linecap="round"/>
          </svg>
        </div>
        <div class="num">1</div>
        <div class="action-active">
          <svg class="svg-action" viewBox="0 0 24 24">
            <path d="M12 5v14M5 12h14" stroke-width="2.2" stroke-linecap="round"/>
          </svg>
        </div>
      </div>
    </div>

    <!-- Child -->
    <div class="row">
      <div class="labels">
        <div class="primary">Child (2-15)</div>
      </div>
      <div class="qty">
        <div class="action-disabled">
          <svg class="svg-action" viewBox="0 0 24 24">
            <path d="M5 12h14" stroke-width="2.2" stroke-linecap="round"/>
          </svg>
        </div>
        <div class="num" style="color:#9e9e9e;">0</div>
        <div class="action-active">
          <svg class="svg-action" viewBox="0 0 24 24">
            <path d="M12 5v14M5 12h14" stroke-width="2.2" stroke-linecap="round"/>
          </svg>
        </div>
      </div>
    </div>

    <!-- Bike -->
    <div class="row">
      <div class="labels">
        <div class="primary">Bike</div>
        <div class="secondary">E-bikes are not allowed on buses.</div>
      </div>
      <div class="qty">
        <div class="action-disabled">
          <svg class="svg-action" viewBox="0 0 24 24">
            <path d="M5 12h14" stroke-width="2.2" stroke-linecap="round"/>
          </svg>
        </div>
        <div class="num" style="color:#9e9e9e;">0</div>
        <div class="action-active">
          <svg class="svg-action" viewBox="0 0 24 24">
            <path d="M12 5v14M5 12h14" stroke-width="2.2" stroke-linecap="round"/>
          </svg>
        </div>
      </div>
    </div>

    <!-- Wheelchair -->
    <div class="row">
      <div class="labels">
        <div class="primary">Travel in your wheelchair</div>
        <div class="secondary">Please select passenger first</div>
      </div>
      <div class="qty">
        <div class="action-disabled">
          <svg class="svg-action" viewBox="0 0 24 24">
            <path d="M5 12h14" stroke-width="2.2" stroke-linecap="round"/>
          </svg>
        </div>
        <div class="num" style="color:#9e9e9e;">0</div>
        <div class="action-active">
          <svg class="svg-action" viewBox="0 0 24 24">
            <path d="M12 5v14M5 12h14" stroke-width="2.2" stroke-linecap="round"/>
          </svg>
        </div>
      </div>
    </div>

  </div>

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

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