File size: 10,082 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
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Italian Recipes 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: #222;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 135px;
    background: #3b3b3b;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 32px;
    box-sizing: border-box;
    font-weight: 600;
  }
  .status-left { display: flex; align-items: center; gap: 22px; font-size: 42px; }
  .status-right { margin-left: auto; display: flex; align-items: center; gap: 26px; }
  .status-icon { width: 40px; height: 40px; display: inline-block; }

  /* App bar */
  .app-bar {
    position: absolute;
    top: 135px;
    left: 0;
    width: 1080px;
    height: 165px;
    background: #ffffff;
    border-bottom: 1px solid #e9e9e9;
    display: flex;
    align-items: center;
    padding: 0 36px;
    box-sizing: border-box;
  }
  .back-btn {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .app-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  /* Content area */
  .content {
    position: absolute;
    top: 300px;
    left: 0;
    width: 1080px;
    height: calc(2400px - 300px);
    overflow: hidden;
    padding: 0 40px 40px;
    box-sizing: border-box;
  }
  .card {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 28px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    margin-bottom: 40px;
    overflow: hidden;
  }
  .card.black { background: #000; }
  .card .img-placeholder {
    position: absolute;
    inset: 0;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #757575;
    font-size: 34px;
    letter-spacing: 0.3px;
  }
  .pill {
    position: absolute;
    top: 34px;
    left: 34px;
    background: #ffffff;
    color: #333;
    border-radius: 28px;
    padding: 20px 28px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 34px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
  .lock-ic { width: 40px; height: 40px; }
  .stars {
    position: absolute;
    left: 50px;
    bottom: 205px;
    display: flex;
    gap: 8px;
  }
  .star { width: 36px; height: 36px; }
  .star.orange path { fill: #ff6d2e; }
  .star.gray path { fill: #cfcfcf; }
  .card-title {
    position: absolute;
    left: 50px;
    bottom: 120px;
    right: 180px;
    color: #ffffff;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
  }
  .brand {
    position: absolute;
    left: 50px;
    bottom: 60px;
    color: #cfcfcf;
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 700;
  }
  .plus {
    position: absolute;
    right: 36px;
    bottom: 40px;
    width: 92px;
    height: 92px;
    background: #39b6aa;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    line-height: 0;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(57,182,170,0.35);
  }

  /* Light text for image cards */
  .card.image .card-title { color: #ffffff; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>8:43</div>
      <div>18°</div>
      <div class="status-icon">
        <!-- Simple mail envelope -->
        <svg viewBox="0 0 24 24" width="40" height="40" fill="#fff" opacity="0.9">
          <path d="M2 5h20v14H2z" fill="none" stroke="#fff" stroke-width="2"/>
          <path d="M2 5l10 8 10-8" fill="none" stroke="#fff" stroke-width="2"/>
        </svg>
      </div>
      <div>32°</div>
    </div>
    <div class="status-right">
      <svg class="status-icon" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
        <path d="M2 18c3-4 7-6 10-6s7 2 10 6" />
        <path d="M6 18c2-3 4-4 6-4s4 1 6 4" />
        <circle cx="12" cy="18" r="1.5" fill="#fff"/>
      </svg>
      <svg class="status-icon" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
        <rect x="3" y="7" width="15" height="10" rx="2" />
        <rect x="19" y="10" width="2" height="4" />
        <rect x="5" y="9" width="11" height="6" fill="#fff"/>
      </svg>
    </div>
  </div>

  <!-- App Bar -->
  <div class="app-bar">
    <div class="back-btn">
      <svg viewBox="0 0 24 24" width="64" height="64" fill="none" stroke="#444" stroke-width="3">
        <path d="M15 19l-7-7 7-7" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="app-title">Italian</div>
  </div>

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

    <!-- Card: Black background -->
    <div class="card black">
      <div class="pill">
        <svg class="lock-ic" viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2">
          <rect x="6" y="10" width="12" height="10" rx="2" fill="none"/>
          <path d="M8 10V7a4 4 0 018 0v3" />
          <circle cx="12" cy="15" r="1.7" fill="#333"/>
        </svg>
        <span>GUIDED</span>
      </div>
      <div class="stars">
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star gray" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
      </div>
      <div class="card-title">Sheet Pan Pizza Chicken</div>
      <div class="brand">YUMMLY</div>
      <div class="plus">+</div>
    </div>

    <!-- Card: Stuffed Mushrooms (image placeholder) -->
    <div class="card image">
      <div class="img-placeholder">[IMG: Creamy Spinach Stuffed Mushrooms]</div>
      <div class="pill">
        <svg class="lock-ic" viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2">
          <rect x="6" y="10" width="12" height="10" rx="2" fill="none"/>
          <path d="M8 10V7a4 4 0 018 0v3" />
          <circle cx="12" cy="15" r="1.7" fill="#333"/>
        </svg>
        <span>GUIDED</span>
      </div>
      <div class="stars">
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star gray" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
      </div>
      <div class="card-title">Creamy Spinach Stuffed Mushrooms</div>
      <div class="brand">YUMMLY</div>
      <div class="plus">+</div>
    </div>

    <!-- Card: Pasta Bake (image placeholder) -->
    <div class="card image">
      <div class="img-placeholder">[IMG: Super Easy Pasta Bake]</div>
      <div class="pill">
        <svg class="lock-ic" viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2">
          <rect x="6" y="10" width="12" height="10" rx="2" fill="none"/>
          <path d="M8 10V7a4 4 0 018 0v3" />
          <circle cx="12" cy="15" r="1.7" fill="#333"/>
        </svg>
        <span>GUIDED</span>
      </div>
      <div class="stars">
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star orange" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
        <svg class="star gray" viewBox="0 0 24 24">
          <path d="M12 2l3 6 7 .7-5 4.6 1.5 6.7L12 17l-6.5 3 1.5-6.7-5-4.6 7-.7 3-6z"/>
        </svg>
      </div>
      <div class="card-title">Super Easy Pasta Bake</div>
      <div class="brand">YUMMLY</div>
      <div class="plus">+</div>
    </div>

    <!-- Partial next card visible at bottom (image placeholder) -->
    <div class="card image" style="height: 420px;">
      <div class="img-placeholder">[IMG: Baked Spaghetti Dish]</div>
      <div class="pill">
        <svg class="lock-ic" viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2">
          <rect x="6" y="10" width="12" height="10" rx="2" fill="none"/>
          <path d="M8 10V7a4 4 0 018 0v3" />
          <circle cx="12" cy="15" r="1.7" fill="#333"/>
        </svg>
        <span>GUIDED</span>
      </div>
      <div class="card-title" style="bottom: 110px;">Cheesy Baked Spaghetti</div>
      <div class="brand">YUMMLY</div>
      <div class="plus">+</div>
    </div>

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