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

  /* Header */
  .header {
    height: 150px;
    display: flex;
    align-items: center;
    padding: 0 36px;
    border-bottom: 1px solid #ECEFF1;
  }
  .back-btn {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
  }
  .header-title {
    font-size: 54px;
    font-weight: 700;
    color: #1F2937;
  }

  /* Content */
  .content {
    padding: 36px;
  }

  .filled-row {
    background: #EAF1F3;
    border-radius: 28px;
    padding: 34px 36px;
    display: flex;
    align-items: center;
    margin: 26px 0;
  }
  .row-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 26px;
  }
  .row-text {
    font-size: 42px;
    color: #1F2937;
  }

  .section-label {
    font-size: 40px;
    color: #4B5563;
    margin-top: 48px;
    margin-bottom: 18px;
  }

  .outlined-row {
    background: #FFFFFF;
    border: 2px solid #D5DEE6;
    border-radius: 30px;
    padding: 30px 36px;
    display: flex;
    align-items: center;
    margin: 20px 0;
    width: 650px;
  }
  .outlined-row .row-text {
    color: #374151;
  }

  /* Bottom primary button */
  .bottom-cta {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 170px;
    height: 130px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F66B1D 0%, #D84C12 100%);
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }

  /* System navigation area (gesture bar) */
  .sys-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home-pill {
    width: 220px;
    height: 12px;
    background: #E5E7EB;
    border-radius: 8px;
    opacity: 0.9;
  }

  /* Utility: thin icon stroke */
  svg { display: block; }
  .icon-stroke { stroke: #374151; stroke-width: 2; fill: none; }
  .icon-fill { fill: #374151; }
</style>
</head>
<body>
<div id="render-target">
  <!-- Header -->
  <div class="header">
    <div class="back-btn" aria-label="Back">
      <svg width="44" height="44" viewBox="0 0 24 24">
        <path class="icon-fill" d="M14.7 5.3a1 1 0 0 1 0 1.4L10.4 11l4.3 4.3a1 1 0 1 1-1.4 1.4l-5-5a1 1 0 0 1 0-1.4l5-5a1 1 0 0 1 1.4 0z"/>
      </svg>
    </div>
    <div class="header-title">Stays</div>
  </div>

  <!-- Content -->
  <div class="content">
    <!-- Location -->
    <div class="filled-row">
      <div class="row-icon">
        <svg width="56" height="56" viewBox="0 0 24 24">
          <path class="icon-stroke" d="M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7z"/>
          <circle class="icon-stroke" cx="12" cy="9" r="2.5"/>
        </svg>
      </div>
      <div class="row-text">Honolulu (HNL), O'ahu, HI</div>
    </div>

    <!-- Dates -->
    <div class="filled-row">
      <div class="row-icon">
        <svg width="56" height="56" viewBox="0 0 24 24">
          <rect class="icon-stroke" x="3" y="4" width="18" height="16" rx="2"/>
          <path class="icon-stroke" d="M8 2v4M16 2v4M3 9h18"/>
        </svg>
      </div>
      <div class="row-text">Mon, Jan 29 – Mon, Feb 5</div>
    </div>

    <div class="section-label">Options</div>

    <!-- Options: guests -->
    <div class="outlined-row">
      <div class="row-icon" style="margin-right:22px;">
        <svg width="56" height="56" viewBox="0 0 24 24">
          <circle class="icon-stroke" cx="12" cy="7" r="3"/>
          <path class="icon-stroke" d="M5 19a7 7 0 0 1 14 0"/>
        </svg>
      </div>
      <div class="row-text">1 room, 1 guest</div>
    </div>

    <!-- Options: property types -->
    <div class="outlined-row">
      <div class="row-icon" style="margin-right:22px;">
        <svg width="56" height="56" viewBox="0 0 24 24">
          <path class="icon-stroke" d="M3 10l9-6 9 6"/>
          <path class="icon-stroke" d="M5 10v10h14V10"/>
          <path class="icon-stroke" d="M9 20v-6h6v6"/>
        </svg>
      </div>
      <div class="row-text">All property types</div>
    </div>
  </div>

  <!-- Bottom CTA -->
  <div class="bottom-cta">Search stays</div>

  <!-- System nav bar -->
  <div class="sys-nav">
    <div class="home-pill"></div>
  </div>
</div>
</body>
</html>