| <!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; |
| } |
| |
| |
| .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 { |
| 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; |
| } |
| .icon-btn svg { width: 56px; height: 56px; } |
| .icon-btn { color: #ff6b8e; opacity: 0.95; } |
| |
| |
| .section { |
| padding: 40px 48px 0 48px; |
| } |
| .section h2 { |
| font-size: 56px; margin: 24px 0 24px; font-weight: 800; |
| } |
| |
| |
| .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 { 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-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-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 { |
| 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"> |
|
|
| |
| <div class="status-bar"> |
| <div>7:42</div> |
| <div class="status-icons"> |
| |
| <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> |
| |
| <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> |
|
|
| |
| <div class="app-bar"> |
| <div class="app-left"> |
| |
| <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"> |
| |
| <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> |
| |
| <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> |
|
|
| |
| <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"> |
| |
| <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> |
|
|
| |
| <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> |
|
|
| |
| <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> |
|
|
| |
| <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> |
|
|
| |
| <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> |
|
|
| |
| <div class="ad-wrap"> |
| <div class="ad"> |
| <div class="label">[IMG: Domino's Pizza Ad]</div> |
| <div class="install">INSTALL</div> |
| </div> |
| </div> |
|
|
| |
| <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> |