File size: 9,478 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 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Recipe - Cinnamon Roll Coffee Cake</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #1f2227; color: #ECECEC;
}
/* Top status bar */
.status-bar {
height: 110px;
display: flex; align-items: center; justify-content: space-between;
padding: 0 40px;
color: #fff; font-weight: 600; font-size: 38px;
}
.status-icons { display: flex; align-items: center; gap: 28px; opacity: 0.9; }
.status-icons svg { width: 42px; height: 42px; }
/* App bar */
.app-bar {
height: 170px;
display: flex; align-items: center;
padding: 0 36px;
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-left, .app-right { display: flex; align-items: center; gap: 34px; }
.app-title {
flex: 1;
text-align: center;
font-size: 58px; font-weight: 700;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
padding-right: 140px; /* space for right icons */
}
.icon-btn svg { width: 56px; height: 56px; }
.icon-btn { color: #ff6b8e; opacity: 0.95; }
/* Section header */
.section {
padding: 40px 48px 0 48px;
}
.section h2 {
font-size: 56px; margin: 24px 0 24px; font-weight: 800;
}
/* Step-by-step button */
.cta {
margin: 12px 0 28px;
background: #cf1f5f; color: #fff;
height: 120px; border-radius: 22px;
display: flex; align-items: center; justify-content: center;
font-size: 44px; font-weight: 800; letter-spacing: 0.5px;
box-shadow: 0 6px 0 rgba(0,0,0,0.25) inset;
}
.cta span { display: inline-flex; align-items: center; gap: 18px; }
/* Steps cards */
.steps { padding: 0 48px; }
.step-card {
background: #2b2e33;
border-radius: 26px;
padding: 32px 32px 38px 32px;
margin-bottom: 30px;
box-shadow: 0 2px 0 rgba(0,0,0,0.35) inset;
}
.step-card .line {
display: flex; align-items: flex-start; gap: 26px;
}
.step-number {
width: 64px; height: 64px;
border-radius: 14px;
background: rgba(255,255,255,0.08);
color: #fff; font-weight: 800; font-size: 40px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.step-text {
font-size: 40px; line-height: 1.45; color: #D9DBDE;
}
.step-text .accent { color: #ff2c6c; }
.step-card .chev {
margin-left: auto; margin-top: 6px;
}
/* Ad banner placeholder */
.ad-wrap {
margin: 24px 48px;
background: #2b2e33;
border-radius: 20px;
padding: 16px;
}
.ad {
height: 160px;
border: 1px solid #BDBDBD;
background: #E0E0E0;
border-radius: 16px;
display: flex; align-items: center; justify-content: space-between;
padding: 0 28px;
color: #555;
font-size: 42px; font-weight: 700;
}
.ad .label { color: #757575; }
.ad .install {
background: #1fbb7c; color: #fff; font-weight: 800;
padding: 22px 40px; border-radius: 999px; font-size: 40px;
}
/* Bottom navigation */
.bottom-nav {
position: absolute; left: 0; right: 0; bottom: 0;
height: 210px;
background: #25282d;
border-top: 1px solid rgba(255,255,255,0.07);
display: flex; align-items: center; justify-content: space-around;
}
.nav-item {
display: flex; flex-direction: column; align-items: center; gap: 16px;
color: #9EA4AB; font-size: 34px; font-weight: 700;
}
.nav-item.active { color: #ff3b7a; }
.nav-item svg { width: 60px; height: 60px; }
.profile-badge {
width: 60px; height: 60px; border-radius: 30px;
background: #4f79ff; color: #fff; display: flex; align-items: center; justify-content: center;
font-weight: 800;
}
/* Home indicator */
.home-indicator {
position: absolute; bottom: 18px; left: 50%;
transform: translateX(-50%);
width: 260px; height: 10px; background: #fff; opacity: 0.85; border-radius: 6px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>7:42</div>
<div class="status-icons">
<!-- WiFi icon -->
<svg viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
<path d="M2 9c5-4 15-4 20 0" />
<path d="M5 12c4-3 10-3 14 0" />
<path d="M8 15c3-2 5-2 8 0" />
<circle cx="12" cy="18" r="1.5" fill="#fff" stroke="none"/>
</svg>
<!-- Battery icon -->
<svg viewBox="0 0 28 24" fill="none" stroke="#fff" stroke-width="2">
<rect x="2" y="6" width="20" height="12" rx="2"/>
<rect x="4" y="8" width="16" height="8" fill="#fff" stroke="none"/>
<rect x="22" y="10" width="4" height="4" rx="1"/>
</svg>
<div style="font-size:34px;">100%</div>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="app-left">
<!-- Back arrow -->
<div class="icon-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="#ff6b8e" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round">
<path d="M15 6 L9 12 L15 18"/>
</svg>
</div>
</div>
<div class="app-title">Cinnamon Roll Coffee C...</div>
<div class="app-right">
<!-- Share -->
<div class="icon-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="#ff6b8e" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round">
<circle cx="18" cy="5" r="3"/>
<circle cx="6" cy="12" r="3"/>
<circle cx="18" cy="19" r="3"/>
<path d="M8.7 11.1 L15.3 7.9"/>
<path d="M8.7 12.9 L15.3 16.1"/>
</svg>
</div>
<!-- Heart -->
<div class="icon-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="#ff6b8e" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 20s-7-4.5-7-9.5A4.5 4.5 0 0 1 9.5 6c1.7 0 2.5 1 2.5 1s0.8-1 2.5-1A4.5 4.5 0 0 1 19 10.5C19 15.5 12 20 12 20z"/>
</svg>
</div>
</div>
</div>
<!-- Content -->
<div class="section">
<h2>Preparation</h2>
<div class="cta">
<span>Step-by-step mode
<svg viewBox="0 0 20 20" width="40" height="40" fill="#fff">
<path d="M6 4 L14 10 L6 16 Z"/>
</svg>
</span>
</div>
</div>
<div class="steps">
<!-- Step 1 -->
<div class="step-card">
<div class="line">
<div class="step-number">1</div>
<div class="step-text">
Preheat the oven to 350ºF (180ºC). Grease a 9 x 13-inch baking dish with nonstick spray.
</div>
</div>
</div>
<!-- Step 2 -->
<div class="step-card">
<div class="line">
<div class="step-number">2</div>
<div class="step-text">
Make the cinnamon topping: In a medium bowl, mix together the butter, brown sugar, salt, flour, McCormick® Ground Cinnamon, and pecans. Microwave for 30 seconds.
</div>
<div class="chev">
<svg viewBox="0 0 20 20" width="34" height="34" fill="#ff2c6c">
<path d="M6 4 L14 10 L6 16 Z"/>
</svg>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="step-card">
<div class="line">
<div class="step-number">3</div>
<div class="step-text">
Make the cake: In a large bowl, whisk together the flour, granulated sugar, baking powder, and salt.
</div>
</div>
</div>
<!-- Step 4 -->
<div class="step-card">
<div class="line">
<div class="step-number">4</div>
<div class="step-text">
In a medium bowl, whisk together the milk, eggs, and vanilla until well-combined.
</div>
</div>
</div>
<!-- Step 5 -->
<div class="step-card">
<div class="line">
<div class="step-number">5</div>
<div class="step-text">
Pour the wet ingredients into the dry ingredients and whisk until mostly incorporated but a few dry streaks remain. Whisk in the melted butter.
</div>
</div>
</div>
</div>
<!-- Ad -->
<div class="ad-wrap">
<div class="ad">
<div class="label">[IMG: Domino's Pizza Ad]</div>
<div class="install">INSTALL</div>
</div>
</div>
<!-- Bottom navigation -->
<div class="bottom-nav">
<div class="nav-item active">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round">
<circle cx="10" cy="10" r="7"/>
<path d="M22 22 L16 16"/>
</svg>
<div>Discover</div>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
<path d="M6 20c0-4 3-7 6-7s6 3 6 7"/>
<circle cx="12" cy="10" r="3"/>
</svg>
<div>Community</div>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
<path d="M6 7h12l-1 12H7z"/>
<path d="M9 7c0-2 6-2 6 0"/>
</svg>
<div>My Bag</div>
</div>
<div class="nav-item">
<div class="profile-badge">C</div>
<div>Profile</div>
</div>
<div class="home-indicator"></div>
</div>
</div>
</body>
</html> |