File size: 6,111 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
<html>
<head>
<meta charset="utf-8">
<title>Reviews UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
  }

  /* Status bar */
  .status-bar {
    height: 110px;
    padding: 20px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-size: 38px;
  }
  .sb-left { display: flex; align-items: center; gap: 24px; }
  .time { font-weight: 700; }
  .mini-icon {
    width: 36px; height: 36px;
    border: 1px solid #bdbdbd; border-radius: 8px; background: #e0e0e0;
  }
  .sb-right { display: flex; align-items: center; gap: 24px; }
  .wifi svg, .battery svg { display: block; }
  .wifi { width: 64px; height: 40px; }
  .battery { width: 80px; height: 40px; }

  /* Close/X icon */
  .close-x {
    position: absolute;
    right: 40px;
    top: 120px;
    font-size: 56px;
    color: #000;
  }

  /* Header stars and count */
  .header {
    text-align: center;
    padding-top: 80px;
  }
  .count {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
  }
  .stars.big {
    margin-top: 24px;
    letter-spacing: 16px;
    font-size: 84px;
  }
  .subtitle {
    margin: 64px 48px 24px;
    font-size: 46px;
    font-weight: 700;
  }

  /* Write a review button */
  .cta {
    margin: 0 48px;
    height: 140px;
    border-radius: 8px;
    background: #000;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
    letter-spacing: 6px;
    font-weight: 700;
  }

  /* Review blocks */
  .content { padding: 24px 48px 40px; }
  .review {
    margin-top: 60px;
    border-top: 2px solid #eee;
    padding-top: 40px;
  }
  .review:first-of-type { border-top: none; }
  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .stars.small { font-size: 64px; letter-spacing: 12px; }
  .date { font-size: 36px; color: #666; }
  .title {
    margin-top: 24px;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: none;
  }
  .body {
    margin-top: 18px;
    font-size: 36px;
    color: #4a4a4a;
    line-height: 1.45;
  }
  .recommend {
    margin-top: 26px;
    display: flex; align-items: center; gap: 22px;
    font-size: 36px; font-weight: 700;
  }
  .check {
    width: 48px; height: 48px; border-radius: 50%;
    background: #77b16c; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 34px; font-weight: 900;
  }
  .userline {
    margin-top: 22px;
    font-size: 34px;
    color: #666;
  }
  .divider {
    margin-top: 36px;
    height: 2px;
    background: #eee;
  }

  /* Bottom handle bar */
  .handle {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 16px;
    background: #dcdcdc;
    border-radius: 10px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="sb-left">
      <span class="time">5:14</span>
      <div class="mini-icon" title="Lock"></div>
      <div class="mini-icon" title="Square"></div>
      <div class="mini-icon" title="Ghost"></div>
      <div class="mini-icon" title="Dot"></div>
    </div>
    <div class="sb-right">
      <div class="wifi">
        <svg viewBox="0 0 64 40">
          <path d="M32 30c3 0 6 3 6 6H26c0-3 3-6 6-6z" fill="#333"/>
          <path d="M12 22c11-10 29-10 40 0" stroke="#333" stroke-width="4" fill="none"/>
          <path d="M20 26c7-6 17-6 24 0" stroke="#333" stroke-width="4" fill="none"/>
        </svg>
      </div>
      <div class="battery">
        <svg viewBox="0 0 80 40">
          <rect x="2" y="6" width="70" height="28" rx="6" ry="6" fill="none" stroke="#333" stroke-width="4"/>
          <rect x="6" y="10" width="52" height="20" rx="4" fill="#333"/>
          <rect x="74" y="12" width="6" height="16" rx="2" fill="#333"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Close icon -->
  <div class="close-x">βœ•</div>

  <!-- Header -->
  <div class="header">
    <h2 class="count">57 REVIEWS</h2>
    <div class="stars big">β˜… β˜… β˜… β˜… β˜…</div>
  </div>

  <div class="subtitle">Tell others what you thought</div>
  <div class="cta">WRITE A REVIEW</div>

  <!-- Reviews Content -->
  <div class="content">

    <!-- Review 1 -->
    <div class="review">
      <div class="review-header">
        <div class="stars small">β˜… β˜… β˜… β˜… β˜…</div>
        <div class="date">SEP 22, 2023</div>
      </div>
      <div class="title">LIKE RUNNING ON A CLOUD</div>
      <div class="body">
        I recently started running and was experiencing a lot of soreness after until I started running in these.
        You can really feel the support and forward motion, and my body feels great (as opposed to very sore!)
        after training now. Definitely buy a size down though. I'm usually a women's 7.5, and an Adidas 6.5 fits me perfectly.
      </div>
      <div class="recommend">
        <div class="check">βœ“</div>
        <div>RECOMMENDS THIS PRODUCT</div>
      </div>
      <div class="userline">ROLLERSKATE76 Β· VERIFIED PURCHASER</div>
      <div class="divider"></div>
    </div>

    <!-- Review 2 -->
    <div class="review">
      <div class="review-header">
        <div class="stars small">β˜… β˜… β˜… β˜… β˜…</div>
        <div class="date">SEP 21, 2023</div>
      </div>
      <div class="title">MORE COMFORTABLE THAN MEETS THE EYE.</div>
      <div class="body">
        I'm very happy with my purchase. I've had ankle surgery, and these are so comfortable. Wish they had more colors!
      </div>
      <div class="recommend">
        <div class="check">βœ“</div>
        <div>RECOMMENDS THIS PRODUCT</div>
      </div>
      <div class="userline">SHOPPINGGURU Β· VERIFIED PURCHASER</div>
    </div>

  </div>

  <!-- Bottom handle bar -->
  <div class="handle"></div>
</div>
</body>
</html>