| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Pizza Menu</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #333; } |
| #render-target { width: 1080px; height: 2400px; position: relative; overflow: hidden; background: #ffffff; } |
| |
| .content { padding: 40px 48px; } |
| |
| |
| .statusbar { height: 72px; display: flex; align-items: center; justify-content: space-between; color: #666; font-size: 28px; } |
| .status-icons { display: flex; gap: 18px; align-items: center; } |
| |
| |
| .header { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; } |
| .hdr-left { display: flex; align-items: center; gap: 24px; } |
| .title { font-size: 58px; font-weight: 700; letter-spacing: 0.2px; } |
| .icon-btn { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: 32px; } |
| .icon { width: 40px; height: 40px; } |
| .search-wrap { margin-right: 8px; } |
| |
| |
| .featured { margin-top: 30px; display: grid; grid-template-columns: 1fr 420px; gap: 24px; align-items: start; } |
| .price { font-size: 44px; font-weight: 700; margin-bottom: 22px; } |
| .muted { color: #777; font-size: 32px; line-height: 1.45; } |
| .feat-right { display: flex; flex-direction: column; align-items: flex-end; } |
| .img-circle { width: 360px; height: 360px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 30px; text-align: center; } |
| .add-btn { margin-top: 18px; width: 360px; height: 100px; background: #eaf3e6; border: 2px solid #9fb49b; border-radius: 22px; color: #2e7d32; font-weight: 700; font-size: 42px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 0 rgba(0,0,0,0.08); } |
| .customizable { font-size: 28px; color: #666; margin-top: 10px; } |
| |
| |
| .section-title { margin-top: 40px; font-size: 46px; font-weight: 800; letter-spacing: 1px; } |
| .underline { width: 220px; height: 8px; background: #386e3a; border-radius: 4px; margin-top: 18px; } |
| |
| |
| .item { margin-top: 50px; padding-top: 18px; } |
| .row { display: flex; align-items: center; gap: 18px; } |
| .veg-icon { width: 40px; height: 40px; border: 3px solid #2f8b3a; border-radius: 10px; } |
| .pill { background: #ff6f61; color: #fff; font-size: 28px; padding: 8px 18px; border-radius: 20px; font-weight: 700; } |
| .item-layout { display: grid; grid-template-columns: 1fr 440px; gap: 28px; align-items: start; } |
| .item-title { font-size: 44px; font-weight: 800; line-height: 1.2; margin-top: 16px; } |
| .item-price { font-size: 40px; font-weight: 800; margin-top: 10px; } |
| .badge-row { display: flex; align-items: center; gap: 14px; margin-top: 14px; color: #666; font-size: 30px; } |
| .jain-badge { width: 40px; height: 40px; border-radius: 20px; background: #ffc74f; display: flex; align-items: center; justify-content: center; color: #222; font-weight: 800; } |
| .item-desc { margin-top: 12px; color: #666; font-size: 32px; line-height: 1.5; } |
| .right-col { display: flex; flex-direction: column; align-items: flex-end; } |
| .divider { margin: 36px 0 12px; height: 2px; background: #eee; } |
| |
| |
| .menu-fab { position: absolute; bottom: 260px; left: 430px; background: #000; color: #fff; padding: 22px 34px; border-radius: 24px; display: flex; align-items: center; gap: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.25); font-size: 34px; font-weight: 700; } |
| .menu-icon { width: 40px; height: 40px; } |
| |
| |
| .gesture-bar { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 300px; height: 10px; background: #ddd; border-radius: 6px; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| <div class="content"> |
| |
| <div class="statusbar"> |
| <div>2:03</div> |
| <div class="status-icons"> |
| <span>◯</span> |
| <span>⌁</span> |
| <span>•</span> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="hdr-left"> |
| <div class="icon-btn"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M14 6l-6 6 6 6" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="title">Pizza</div> |
| </div> |
| <div class="search-wrap icon-btn"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="6" fill="none" stroke="#333" stroke-width="2"/> |
| <path d="M15 15l5 5" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="featured"> |
| <div> |
| <div class="price">₹155</div> |
| <div class="muted">crispy onion with real mozzarella & cheddar cheese</div> |
| </div> |
| <div class="feat-right"> |
| <div class="img-circle">[IMG: Pizza]</div> |
| <div class="add-btn">ADD +</div> |
| <div class="customizable">Customizable</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section-title">SIMPLY VEG</div> |
| <div class="underline"></div> |
|
|
| |
| <div class="item"> |
| <div class="row"> |
| <div class="veg-icon"></div> |
| <div class="pill">Bestseller</div> |
| </div> |
| <div class="item-layout"> |
| <div> |
| <div class="item-title">Double Cheese Margheritra Pizza</div> |
| <div class="item-price">₹175</div> |
| <div class="badge-row"> |
| <div class="jain-badge">J</div> |
| <div>Jain Available</div> |
| </div> |
| <div class="item-desc">Extra Loaded 100% Real Mozzarella Cheese Over A Zesty Tomato Gravy</div> |
| </div> |
| <div class="right-col"> |
| <div class="img-circle" style="width: 300px; height: 300px;">[IMG: Pizza]</div> |
| <div class="add-btn" style="width: 300px; height: 94px;">ADD +</div> |
| <div class="customizable">Customizable</div> |
| </div> |
| </div> |
| <div class="divider"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="row"> |
| <div class="veg-icon"></div> |
| </div> |
| <div class="item-layout"> |
| <div> |
| <div class="item-title">Fresh Delight Pizza</div> |
| <div class="item-price">₹175</div> |
| <div class="item-desc">Loaded With Crips Green Peppers, Fresh Cut Onion, Juicy Tomatoes With 100% Mozzarella And Cheddar Cheese</div> |
| </div> |
| <div class="right-col"> |
| <div class="img-circle" style="width: 300px; height: 300px;">[IMG: Pizza]</div> |
| <div class="add-btn" style="width: 300px; height: 94px;">ADD +</div> |
| <div class="customizable">Customizable</div> |
| </div> |
| </div> |
| <div class="divider"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="row"> |
| <div class="veg-icon"></div> |
| </div> |
| <div class="item-layout"> |
| <div> |
| <div class="item-title">Indian Bite Pizza</div> |
| <div class="item-price">₹175</div> |
| <div class="item-desc">Fresh Juice Sweet Corn, Onion, Mushroom With 100% Real Mozzarella And Cheddar Cheese</div> |
| </div> |
| <div class="right-col"> |
| <div class="img-circle" style="width: 300px; height: 300px;">[IMG: Pizza]</div> |
| <div class="add-btn" style="width: 300px; height: 94px;">ADD +</div> |
| <div class="customizable">Customizable</div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="menu-fab"> |
| <svg class="menu-icon" viewBox="0 0 24 24"> |
| <path d="M4 4l6 6M10 4L4 10" stroke="#fff" stroke-width="2" stroke-linecap="round" fill="none"/> |
| <path d="M16 4v10M20 4v10" stroke="#fff" stroke-width="2" stroke-linecap="round" fill="none"/> |
| </svg> |
| <span>MENU</span> |
| </div> |
|
|
| |
| <div class="gesture-bar"></div> |
| </div> |
| </body> |
| </html> |