File size: 9,345 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
<html>
<head>
<meta charset="utf-8">
<title>Reviews Screen</title>
<style>
  body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    width:1080px; height:2400px;
    position:relative; overflow:hidden;
    background:#ffffff;
  }
  /* Status bar */
  .status-bar {
    height:110px;
    padding:0 36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#222;
    font-weight:600;
    font-size:40px;
  }
  .status-left, .status-right { display:flex; align-items:center; gap:28px; }
  .status-icon {
    width:36px; height:36px; border-radius:8px; background:#e6e6e6; border:1px solid #cfcfcf;
  }
  .status-right .wifi { width:44px; height:32px; border:2px solid #333; border-top-left-radius:14px; border-top-right-radius:14px; border-bottom:none; position:relative; }
  .status-right .battery {
    width:74px; height:36px; border:2px solid #333; border-radius:6px; position:relative;
  }
  .battery::after {
    content:""; position:absolute; right:-10px; top:10px; width:8px; height:16px; background:#333; border-radius:2px;
  }
  .battery::before {
    content:""; position:absolute; left:2px; top:2px; bottom:2px; right:2px; background:#333;
  }
  /* Header title */
  .title-area { text-align:center; padding:20px 36px 10px; position:relative; }
  .title-area h1 { margin:0; font-size:46px; letter-spacing:1px; }
  .close-btn {
    position:absolute; right:34px; top:10px; width:60px; height:60px; display:flex; align-items:center; justify-content:center;
    color:#111;
  }
  .close-btn svg { width:40px; height:40px; }
  .stars-large, .stars-small { display:flex; gap:26px; align-items:center; }
  .stars-large { justify-content:center; padding:14px 0 26px; }
  .stars-large svg { width:64px; height:64px; }
  .divider { height:2px; background:#efefef; margin:18px 0 8px; }
  /* Review blocks */
  .review { padding:34px 44px; }
  .top-row { display:flex; align-items:center; justify-content:space-between; }
  .stars-small svg { width:54px; height:54px; }
  .date { color:#666; font-size:34px; }
  .headline { font-size:42px; font-weight:700; margin:26px 0 12px; color:#111; }
  .body-text { font-size:34px; line-height:1.45; color:#5f5f5f; }
  .recommend {
    margin-top:26px; display:flex; align-items:center; gap:18px; color:#1b5e20; font-weight:700; font-size:34px;
  }
  .check-ico { width:40px; height:40px; border-radius:50%; background:#4CAF50; display:flex; align-items:center; justify-content:center; }
  .check-ico svg { width:26px; height:26px; fill:#fff; }
  .verified { margin-top:24px; color:#6f6f6f; font-size:32px; }
  .verified .dot { margin:0 10px; color:#b0b0b0; }
  .section-sep { height:2px; background:#efefef; margin:18px 0; }
  /* Bottom home indicator */
  .home-indicator {
    position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
    width:520px; height:16px; background:#000; border-radius:12px; opacity:0.85;
  }
  /* Star icon style */
  .star path { fill:#111; }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>5:15</div>
      <div class="status-icon"></div>
      <div class="status-icon"></div>
      <div class="status-icon"></div>
      <div class="status-icon"></div>
    </div>
    <div class="status-right">
      <div class="wifi"></div>
      <div class="battery"></div>
    </div>
  </div>

  <!-- Title and overall rating -->
  <div class="title-area">
    <h1>57 REVIEWS</h1>
    <div class="stars-large">
      <!-- 5 large stars -->
      <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
      <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
      <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
      <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
      <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
    </div>
    <div class="close-btn">
      <svg viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19" stroke="#111" stroke-width="2" stroke-linecap="round"/></svg>
    </div>
  </div>
  <div class="divider"></div>

  <!-- Review 1 -->
  <div class="review">
    <div class="top-row">
      <div class="stars-small">
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
      </div>
      <div class="date">SEP 4, 2023</div>
    </div>
    <div class="headline">BEST SHOES FOR NURSES</div>
    <div class="body-text">
      My feet do not hurt after a 12 hour shift! These shoes are amazing. My only complaint is the ground feels so hard when I take them off. Please come out with new flashier colors :)
    </div>
    <div class="recommend">
      <div class="check-ico">
        <svg viewBox="0 0 24 24"><path d="M20 6l-11 11-5-5" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
      </div>
      <div>RECOMMENDS THIS PRODUCT</div>
    </div>
    <div class="verified">
      <strong>RNRN</strong><span class="dot"> · </span>VERIFIED PURCHASER
    </div>
  </div>

  <div class="section-sep"></div>

  <!-- Review 2 -->
  <div class="review">
    <div class="top-row">
      <div class="stars-small">
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
      </div>
      <div class="date">AUG 31, 2023</div>
    </div>
    <div class="headline">GREAT SHOE FOR ALMOST EVERYDAY ACTIVITIES</div>
    <div class="body-text">
      Would recommend the shoe due to its good price and quality compared to the price
    </div>
    <div class="recommend">
      <div class="check-ico">
        <svg viewBox="0 0 24 24"><path d="M20 6l-11 11-5-5" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
      </div>
      <div>RECOMMENDS THIS PRODUCT</div>
    </div>
    <div class="verified">
      <strong>GOOOOOOOODZ</strong><span class="dot"> · </span>VERIFIED PURCHASER
    </div>
  </div>

  <div class="section-sep"></div>

  <!-- Review 3 -->
  <div class="review">
    <div class="top-row">
      <div class="stars-small">
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
        <svg class="star" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>
      </div>
      <div class="date">AUG 30, 2023</div>
    </div>
    <div class="headline">THIS ONE DEFINITELY STOLE MY HEART</div>
    <div class="body-text">
      Omg I’m in love with my shoes. I was concern if i should get size 8.5 witches my normal size or 9. With adidas I usually get size 9 but reading the reviews make me decide to stay with size 8.5 . Thank God I did. Fit perfectly, so comfortable, and look amazing. Adidas is the most comfortable shoes I ever tried. I have multiple different shoes from different brand and adidas always the most comfortable shoes.
    </div>
  </div>

  <div class="home-indicator"></div>
</div>
</body>
</html>