AndroidCode / code /10115 /10115_4.html
yhzheng1031's picture
Add files using upload-large-folder tool
0e1717f verified
raw
history blame
8.47 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1">
<title>Pizza Menu</title>
<style>
body{margin:0;padding:0;background:transparent;font-family: Arial, Helvetica, sans-serif;color:#222;}
#render-target{
width:1080px;height:2400px;position:relative;overflow:hidden;background:#ffffff;
}
/* Generic */
.row{display:flex;align-items:center;}
.spacer{flex:1}
.muted{color:#757575}
.divider{height:1px;background:#e5e5e5;margin:24px 24px 0 24px}
.chip{
display:inline-block;background:#d84343;color:#fff;font-weight:600;
padding:10px 18px;border-radius:10px;font-size:30px;
}
.strike{color:#9e9e9e;text-decoration:line-through}
.thumb{
width:200px;height:200px;border-radius:26px;background:#E0E0E0;border:1px solid #BDBDBD;
display:flex;align-items:center;justify-content:center;color:#757575;font-size:26px;text-align:center;
}
.section-title{font-size:54px;font-weight:700;margin:36px 24px 8px 24px}
/* Top status area */
.status-bar{height:86px;padding:0 24px;display:flex;align-items:center;color:#777;font-size:30px}
.main-header{padding:24px;display:flex;align-items:center;gap:20px}
.loc{display:flex;align-items:flex-start;gap:14px}
.loc .city{font-size:38px;font-weight:600}
.loc .change{font-size:28px;color:#8a8a8a;margin-top:6px}
.brand{font-size:44px;font-weight:800;color:#e53935}
.brand small{color:#4CAF50;font-weight:700}
.search{
margin-left:auto;background:#f1f1f1;border-radius:50px;padding:18px 26px;width:420px;height:80px;
display:flex;align-items:center;gap:16px;color:#888;border:1px solid #ddd;
}
.search input{border:none;background:transparent;outline:none;font-size:32px;width:100%;color:#444}
/* Promo bar */
.promo{height:86px;background:#ffea00;display:flex;align-items:center;gap:18px;padding:0 24px;font-weight:700}
.promo svg{flex:0 0 36px}
/* Category tabs */
.tabs{display:flex;gap:6px;background:#3E7D21;color:#fff;padding:0 12px;height:92px;align-items:flex-end}
.tab{padding:26px 28px 22px 28px;font-size:34px;border-radius:8px}
.tab.active{background:#d73737}
/* Subcategory strip */
.subtabs{display:flex;gap:28px;background:#fff;height:96px;align-items:center;border-bottom:1px solid #eee}
.subtab{padding:0 28px 24px 28px;font-weight:700;font-size:34px;color:#333}
.subtab.active{color:#d73737;border-bottom:6px solid #e84a4a}
/* Product list */
.product{padding:24px;display:flex;gap:20px;align-items:flex-start}
.product .content{flex:1}
.product .title{font-size:42px;font-weight:700;margin:18px 0 10px 0}
.product .desc{color:#777;font-size:32px;line-height:1.35}
.price-row{margin-top:18px;font-size:34px;display:flex;gap:16px;align-items:center}
.product + .product{border-top:1px solid #eee}
/* Floating cart bar */
.cart-bar{
position:absolute;left:40px;right:40px;bottom:220px;height:120px;background:#cf3a34;
color:#fff;border-radius:26px;display:flex;align-items:center;justify-content:center;
box-shadow:0 6px 16px rgba(0,0,0,0.25);font-size:40px;font-weight:700
}
.cart-badge{
position:absolute;left:24px;width:96px;height:96px;border-radius:50%;background:#b42f2a;
display:flex;align-items:center;justify-content:center;border:4px solid #ffffff80;font-weight:700
}
.cart-arrow{position:absolute;right:30px}
.cart-arrow svg{width:44px;height:44px;fill:#fff}
/* Bottom nav */
.bottom-nav{
position:absolute;left:0;right:0;bottom:40px;height:120px;background:#fff;border-top:1px solid #e6e6e6;
display:flex;align-items:center;justify-content:space-around;color:#888
}
.bottom-item{display:flex;flex-direction:column;align-items:center;font-size:26px}
.bottom-item.active{color:#cf3a34}
.bottom-item svg{width:48px;height:48px;fill:currentColor}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar Placeholder -->
<div class="status-bar">
<div>8:49</div>
<div class="spacer"></div>
<div>• • • •</div>
</div>
<!-- Header -->
<div class="main-header">
<div class="loc">
<svg width="40" height="40" viewBox="0 0 24 24" fill="#757575"><path d="M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>
<div>
<div class="city">Hyderabad</div>
<div class="change">Change City</div>
</div>
</div>
<div class="spacer"></div>
<div class="brand">California <small>PIZZA</small></div>
<div class="spacer"></div>
<div class="search">
<svg width="36" height="36" viewBox="0 0 24 24" fill="#777"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
<input type="text" placeholder="Search"/>
</div>
</div>
<!-- Promo -->
<div class="promo">
<svg viewBox="0 0 24 24"><path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"/></svg>
<div>Get free Pizza on your first order. Use promo freepizza</div>
</div>
<!-- Category Tabs -->
<div class="tabs">
<div class="tab">Crusts</div>
<div class="tab">Deals</div>
<div class="tab active">Pizzas</div>
<div class="tab">Sides</div>
<div class="tab">Desserts</div>
<div class="tab">Drinks</div>
<div class="tab">Crazy</div>
<div class="spacer"></div>
</div>
<!-- Sub category -->
<div class="subtabs">
<div class="subtab active">OVERLOAD MEATY PIZZA</div>
<div class="subtab">OVERLOAD CHEESY PIZZA</div>
<div class="subtab">CHEESY DELUXE</div>
</div>
<!-- Section title -->
<div class="section-title">OVERLOAD MEATY PIZZA</div>
<!-- Product 1 -->
<div class="product">
<div class="content">
<div class="chip">27% off</div>
<div class="title">Arizona Cream</div>
<div class="desc">Made in Creamy Sauce, Chicken Tikka, Onion, Cheese</div>
<div class="price-row">
<span>from</span>
<span class="strike">Rs. 749</span>
<span>547</span>
</div>
</div>
<div class="thumb">[IMG: Pizza Thumbnail]</div>
</div>
<!-- Product 2 -->
<div class="product">
<div class="content">
<div class="chip">27% off</div>
<div class="title">Mexican Treat</div>
<div class="desc">Made in Garlic Mayo sauce, Chicken Tikka, Onion and Cheese</div>
<div class="price-row">
<span>from</span>
<span class="strike">Rs. 749</span>
<span>547</span>
</div>
</div>
<div class="thumb">[IMG: Pizza Thumbnail]</div>
</div>
<!-- Product 3 -->
<div class="product">
<div class="content">
<div class="chip">27% off</div>
<div class="title">Miami Beast</div>
<div class="desc">Made in Garlic Mayo sauce, Chicken Fajita, Green Pepper, Green Jalapeno, Onions</div>
<div class="price-row">
<span>from</span>
<span class="strike">Rs. 749</span>
<span>547</span>
</div>
</div>
<div class="thumb">[IMG: Pizza Thumbnail]</div>
</div>
<!-- Divider -->
<div class="divider"></div>
<!-- Product 4 -->
<div class="product">
<div class="content">
<div class="chip">27% off</div>
<div class="title">Chicago Bulls</div>
<div class="desc">Made in Garlic Mayo sauce, Chicken Tikka, Onion, Cheese</div>
<div class="price-row">
<span>from</span>
<span class="strike">Rs. 749</span>
<span>547</span>
</div>
</div>
<div class="thumb">[IMG: Pizza Thumbnail]</div>
</div>
<!-- Floating cart bar -->
<div class="cart-bar">
<div class="cart-badge">1</div>
<div>View your Cart</div>
<div class="cart-arrow">
<svg viewBox="0 0 24 24"><path d="M12 4l1.41 1.41L8.83 10H20v2H8.83l4.58 4.59L12 18l-8-8 8-8z"/></svg>
</div>
</div>
<!-- Bottom nav -->
<div class="bottom-nav">
<div class="bottom-item">
<svg viewBox="0 0 24 24"><path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>
</div>
<div class="bottom-item active">
<svg viewBox="0 0 24 24"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg>
</div>
<div class="bottom-item">
<svg viewBox="0 0 24 24"><path d="M12 6V3L8 7l4 4V8c2.76 0 5 2.24 5 5a5 5 0 0 1-8.66 3.54l-1.42 1.42A7 7 0 0 0 19 13c0-3.87-3.13-7-7-7z"/></svg>
</div>
</div>
</div>
</body>
</html>