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

  /* General helpers */
  .row {
    display: flex;
    align-items: center;
  }
  .space-between {
    justify-content: space-between;
  }
  .muted {
    color: #bdbdbd;
  }
  .divider {
    height: 1px;
    background: #2a2a2a;
    width: 100%;
  }

  /* Header */
  .header {
    padding: 68px 36px 16px 36px;
  }
  .title-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  .circle-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .circle-icon.large {
    width: 110px;
    height: 110px;
  }
  .circle-icon svg {
    fill: #ffffff;
  }

  /* Tabs & actions */
  .tabs {
    padding: 28px 36px 6px 36px;
    display: flex;
    gap: 80px;
    align-items: flex-end;
  }
  .tab {
    font-size: 40px;
    color: #cfcfcf;
  }
  .tab.active {
    color: #ffffff;
    position: relative;
  }
  .tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 120px;
    height: 6px;
    background: #e6e6e6;
    border-radius: 6px;
  }

  .actions-bar {
    padding: 22px 36px 10px 36px;
  }
  .link {
    color: #2e7bf6;
    font-size: 38px;
    font-weight: 600;
  }
  .action-links {
    display: flex;
    gap: 36px;
  }

  /* Filter chips */
  .chips {
    padding: 26px 24px;
    display: flex;
    gap: 28px;
  }
  .chip {
    padding: 22px 34px;
    border: 2px solid #6d6d6d;
    color: #ffffff;
    border-radius: 999px;
    font-size: 36px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  /* Listing card */
  .list-area {
    padding: 24px 24px 0 24px;
  }
  .card {
    padding: 26px 12px 26px 12px;
    border-top: 2px solid #2a2a2a;
  }
  .card-content {
    display: flex;
    gap: 28px;
  }
  .thumb {
    width: 360px;
    height: 300px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    text-align: center;
    font-size: 28px;
    line-height: 1.3;
  }
  .details {
    flex: 1;
    min-width: 0;
  }
  .item-title {
    font-size: 44px;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 22px;
  }
  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .price {
    font-size: 60px;
    font-weight: 800;
  }
  .offer {
    text-align: right;
    color: #bfbfbf;
    font-size: 32px;
    line-height: 1.35;
    padding-top: 8px;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Header -->
  <div class="header">
    <div class="row space-between">
      <div class="title-wrap">
        <div class="circle-icon" aria-label="Menu">
          <svg width="42" height="42" viewBox="0 0 24 24">
            <rect x="3" y="6" width="18" height="2"></rect>
            <rect x="3" y="11" width="18" height="2"></rect>
            <rect x="3" y="16" width="18" height="2"></rect>
          </svg>
        </div>
        <div class="title">Watchlist</div>
      </div>
      <div class="row" style="gap:18px;">
        <div class="circle-icon large" aria-label="Search">
          <svg width="40" height="40" viewBox="0 0 24 24">
            <path d="M15.5 14h-.79l-.28-.27a6 6 0 1 0-.71.71l.27.28v.79L20 19.5 19.5 20l-4-4zm-6 0a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9z"></path>
          </svg>
        </div>
        <div class="circle-icon large" aria-label="Cart">
          <svg width="40" height="40" viewBox="0 0 24 24">
            <path d="M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM7.2 6h12.2l-1.5 7H8.1L6.6 4H3v2h2.2l2 10h10.9l2-9h-2.1"></path>
          </svg>
        </div>
      </div>
    </div>
  </div>

  <!-- Tabs -->
  <div class="tabs">
    <div class="tab active">Active</div>
    <div class="tab">Ended</div>
  </div>

  <!-- Find / Edit / Refine -->
  <div class="actions-bar row space-between">
    <div class="link">Find</div>
    <div class="action-links">
      <div class="link">Edit</div>
      <div class="link">Refine</div>
    </div>
  </div>

  <!-- Chips -->
  <div class="chips">
    <div class="chip">All Categories (1)</div>
    <div class="chip">Digital Cameras (1)</div>
  </div>

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

  <!-- Listing -->
  <div class="list-area">
    <div class="card">
      <div class="card-content">
        <div class="thumb">[IMG: Nikon camera listing photo]</div>
        <div class="details">
          <div class="item-title">Nikon d5500 camera with Lens And Bag. Barely Used</div>
          <div class="price-row">
            <div class="price">$385.00</div>
            <div class="offer">
              Or Best Offer<br />
              29d 0h
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
</body>
</html>