File size: 8,633 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Italian Recipes 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: #ffffff;
  }

  /* Status bar */
  .statusbar {
    position: absolute; top: 0; left: 0; right: 0;
    height: 150px; background: #3f3f3f; color: #ffffff;
  }
  .statusbar .left, .statusbar .right {
    position: absolute; top: 40px; font-size: 36px; line-height: 1;
  }
  .statusbar .left { left: 40px; }
  .statusbar .right { right: 40px; display: flex; gap: 28px; align-items: center; }
  .icon-battery, .icon-wifi {
    width: 40px; height: 40px;
  }
  .icon-battery rect, .icon-wifi path { fill: none; stroke: #fff; stroke-width: 4; }

  /* Header */
  .header {
    position: absolute; top: 150px; left: 0; right: 0;
    height: 260px; background: #ffffff;
  }
  .back-btn {
    position: absolute; left: 40px; top: 36px; width: 80px; height: 80px; border-radius: 40px;
    display: flex; align-items: center; justify-content: center; color: #333;
  }
  .back-btn svg { width: 48px; height: 48px; }
  .page-title {
    position: absolute; left: 40px; top: 140px;
    font-size: 96px; font-weight: 700; color: #222;
    letter-spacing: -0.5px;
  }

  /* List area */
  .list {
    position: absolute; top: 410px; left: 0; right: 0; bottom: 180px;
    padding: 0 40px;
    overflow: hidden;
  }
  .card {
    position: relative; height: 560px; border-radius: 36px; margin-bottom: 52px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.04);
    overflow: hidden;
  }
  .card .img {
    position: absolute; inset: 0;
    background: #E0E0E0; border: 1px solid #BDBDBD;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-size: 36px; font-weight: 600; text-align: center; padding: 0 20px;
  }
  .card .gradient {
    position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.25), rgba(0,0,0,0));
    pointer-events: none;
  }
  .pill {
    position: absolute; left: 36px; top: 36px;
    background: #ffffff; color: #222; font-weight: 700; font-size: 32px;
    padding: 18px 28px 18px 22px; border-radius: 48px; display: flex; align-items: center; gap: 16px;
  }
  .pill svg { width: 36px; height: 36px; }
  .rating {
    position: absolute; left: 48px; top: 140px; display: flex; gap: 8px;
  }
  .rating svg { width: 30px; height: 30px; fill: #FF6D00; }
  .card .title {
    position: absolute; left: 48px; bottom: 152px;
    color: #ffffff; font-size: 56px; font-weight: 800; letter-spacing: 0.2px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35); max-width: 750px; line-height: 1.18;
  }
  .card .subtitle {
    position: absolute; left: 48px; bottom: 96px;
    color: rgba(255,255,255,0.85); font-size: 28px; font-weight: 700; letter-spacing: 1.6px;
  }
  .fab {
    position: absolute; right: 36px; bottom: 36px; width: 96px; height: 96px;
    background: #2AB7A9; border-radius: 48px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  .fab svg { width: 42px; height: 42px; }
  .fab svg path { stroke: #fff; stroke-width: 8; stroke-linecap: round; }

  /* Bottom navigation / gesture area */
  .nav {
    position: absolute; left: 0; right: 0; bottom: 0; height: 180px; background: #3f3f3f;
  }
  .home-indicator {
    position: absolute; left: 50%; transform: translateX(-50%);
    bottom: 48px; width: 240px; height: 14px; border-radius: 7px; background: #e6e6e6;
    opacity: 0.9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="statusbar">
    <div class="left">8:41  18°  ⟲  32°</div>
    <div class="right">
      <svg class="icon-wifi" viewBox="0 0 24 24">
        <path d="M2 8c5-4 15-4 20 0M5 11c3-2 11-2 14 0M8 14c2-1 6-1 8 0M12 18l-2 2 2-2 2 2-2-2z" />
      </svg>
      <svg class="icon-battery" viewBox="0 0 28 24">
        <rect x="2" y="6" width="20" height="12" rx="2"></rect>
        <rect x="23" y="9" width="3" height="6" rx="1"></rect>
        <rect x="4" y="8" width="12" height="8" fill="#ffffff"></rect>
      </svg>
    </div>
  </div>

  <!-- Header -->
  <div class="header">
    <div class="back-btn">
      <svg viewBox="0 0 24 24">
        <path d="M15 6 L9 12 L15 18" stroke="#333" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="page-title">Italian</div>
  </div>

  <!-- List of recipe cards -->
  <div class="list">

    <!-- Card 1 -->
    <div class="card">
      <div class="img">[IMG: Tortellini bake in bowl with basil]</div>
      <div class="gradient"></div>

      <div class="pill">
        <svg viewBox="0 0 24 24">
          <path d="M7 10V8a5 5 0 0110 0v2" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round"/>
          <rect x="5" y="10" width="14" height="10" rx="2" fill="none" stroke="#222" stroke-width="2"/>
        </svg>
        GUIDED
      </div>

      <div class="rating">
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
      </div>

      <div class="title">Easy 4-Ingredient Tortellini Bake</div>
      <div class="subtitle">YUMMLY</div>

      <div class="fab">
        <svg viewBox="0 0 24 24">
          <path d="M12 5v14M5 12h14" />
        </svg>
      </div>
    </div>

    <!-- Card 2 -->
    <div class="card">
      <div class="img">[IMG: Baked chicken parmesan with cheese]</div>
      <div class="gradient"></div>

      <div class="pill">
        <svg viewBox="0 0 24 24">
          <path d="M7 10V8a5 5 0 0110 0v2" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round"/>
          <rect x="5" y="10" width="14" height="10" rx="2" fill="none" stroke="#222" stroke-width="2"/>
        </svg>
        GUIDED
      </div>

      <div class="rating">
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
      </div>

      <div class="title">Baked Chicken Parmesan</div>
      <div class="subtitle">YUMMLY</div>

      <div class="fab">
        <svg viewBox="0 0 24 24">
          <path d="M12 5v14M5 12h14" />
        </svg>
      </div>
    </div>

    <!-- Card 3 -->
    <div class="card">
      <div class="img">[IMG: Easy baked spaghetti in pan with basil]</div>
      <div class="gradient"></div>

      <div class="pill">
        <svg viewBox="0 0 24 24">
          <path d="M7 10V8a5 5 0 0110 0v2" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round"/>
          <rect x="5" y="10" width="14" height="10" rx="2" fill="none" stroke="#222" stroke-width="2"/>
        </svg>
        GUIDED
      </div>

      <div class="rating">
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
        <svg viewBox="0 0 24 24"><path d="M12 17.3L18.2 21l-1.6-7L22 9.2l-7.2-.6L12 2 9.2 8.6 2 9.2l5.5 4.7L5.8 21z"/></svg>
      </div>

      <div class="title">Easy Baked Spaghetti</div>
      <div class="subtitle">YUMMLY</div>

      <div class="fab">
        <svg viewBox="0 0 24 24">
          <path d="M12 5v14M5 12h14" />
        </svg>
      </div>
    </div>

  </div>

  <!-- Bottom navigation -->
  <div class="nav">
    <div class="home-indicator"></div>
  </div>

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