AndroidCode / code /10184 /10184_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
5501681 verified
raw
history blame
10.4 kB
<html>
<head>
<meta charset="utf-8">
<title>Food App - Biryani Menu</title>
<style>
body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, "Helvetica Neue", sans-serif; color:#1a1a1a; }
#render-target {
width:1080px; height:2400px; position:relative; overflow:hidden;
background:#ffffff;
}
/* Top status bar */
.status-bar{
height:90px; padding:0 36px; display:flex; align-items:center; justify-content:space-between;
font-weight:600; font-size:36px; color:#222;
}
.status-icons{ display:flex; gap:22px; align-items:center; }
.cloud{ width:36px; height:24px; }
.dot{ width:12px; height:12px; background:#222; border-radius:50%; }
/* Header search */
.header{
display:flex; align-items:center; gap:24px; padding:8px 24px 12px 24px;
}
.back-btn{
width:70px; height:70px; border-radius:36px; display:flex; align-items:center; justify-content:center;
}
.search{
flex:1; height:112px; border-radius:56px; background:#f3f4f6; border:1px solid #e2e3e6;
display:flex; align-items:center; padding:0 40px; gap:24px; color:#6b7280; font-size:36px;
}
.search svg{ width:40px; height:40px; fill:#9aa0a6; }
/* Cards */
.content{ padding:8px 24px 220px 24px; }
.card{
position:relative;
display:flex; gap:26px; padding:28px; border-radius:24px;
}
.left{ flex:1; padding-right:12px; }
.title{ font-size:48px; line-height:58px; font-weight:800; letter-spacing:-0.3px; }
.row{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.stars svg{ width:34px; height:34px; }
.rating-count{ color:#4b5563; font-size:32px; }
.price{ margin-top:12px; font-size:40px; font-weight:800; }
.desc{ margin-top:16px; color:#6b7280; font-size:32px; line-height:44px; }
.right{
width:360px; display:flex; flex-direction:column; align-items:center; gap:18px;
}
.food-img{
width:360px; height:360px; border-radius:32px; overflow:hidden; background:#E0E0E0; border:1px solid #BDBDBD;
display:flex; align-items:center; justify-content:center; color:#757575; text-align:center; padding:16px;
}
.add-btn{
width:360px; height:112px; border-radius:28px; background:#ffecef; border:1px solid #f7c8d1;
display:flex; align-items:center; justify-content:center; gap:22px; color:#c12d47; font-weight:800; font-size:48px;
}
.add-btn .plus{
width:48px; height:48px; border-radius:50%; background:#ffebf1; display:flex; align-items:center; justify-content:center; color:#c12d47; font-size:44px;
}
.customisable{ font-size:32px; color:#7c7f85; text-align:center; }
.veg-mark{
width:44px; height:44px; border:2px solid #21a43a; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; margin-right:14px;
}
.veg-mark::after{ content:""; width:22px; height:22px; background:#21a43a; border-radius:50%; display:block; }
.badge{
font-size:28px; background:#fee9a6; color:#8a6b0a; padding:8px 16px; border-radius:16px; font-weight:700; display:inline-block; margin-left:10px;
}
.divider{
border-top:2px dashed #e6e7eb; margin:20px 0;
}
/* Overlay tag */
.overlay-tag{
position:absolute; top:-24px; left:220px; background:#3b3b3b; color:#fff; font-weight:700; font-size:36px;
padding:16px 28px; border-radius:40px;
}
/* Floating menu bubble */
.menu-bubble{
position:absolute; left:50%; transform:translateX(-50%); bottom:300px;
background:#101010; color:#fff; border-radius:32px; padding:24px 36px; display:flex; align-items:center; gap:20px;
box-shadow:0 10px 24px rgba(0,0,0,0.25);
}
.menu-icon{
width:64px; height:64px; background:#f4c27c; border-radius:16px; display:flex; align-items:center; justify-content:center; color:#5b3600; font-weight:900;
font-size:34px;
}
/* Bottom coupon banner */
.coupon{
position:absolute; left:0; right:0; bottom:0; background:#e9f1ff; border-top:1px solid #cddbf7;
display:flex; align-items:center; gap:26px; padding:26px 34px;
}
.coupon .icon{
width:64px; height:64px; border-radius:50%; background:#d4e3ff; display:flex; align-items:center; justify-content:center; color:#2b5bd7; font-weight:900;
}
.coupon .text{ font-size:34px; color:#13438b; }
/* small helpers */
.muted{ color:#6b7280; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>11:50</div>
<div class="status-icons">
<svg class="cloud" viewBox="0 0 24 24"><path d="M6 18h11a4 4 0 0 0 0-8 5 5 0 0 0-9-2A4 4 0 0 0 6 18z" fill="#7e8796"/></svg>
<div class="dot"></div>
<div class="dot" style="height:18px; width:10px; border-radius:2px;"></div>
</div>
</div>
<!-- Search header -->
<div class="header">
<div class="back-btn">
<svg width="44" height="44" viewBox="0 0 24 24"><path d="M15 19l-7-7 7-7" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
</div>
<div class="search">
<svg viewBox="0 0 24 24"><path d="M21 21l-4.3-4.3M10.5 18a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15z"/></svg>
<div>Search in Biryani Blues</div>
</div>
</div>
<div class="content">
<!-- Card 1 -->
<div class="card">
<div class="overlay-tag">Recommended (13)</div>
<div class="left">
<div class="title">Veg Biryani Mini<br>Each (2 Nos)</div>
<div class="row">
<div class="stars">
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><defs><linearGradient id="g"><stop offset="50%" stop-color="#FBBF24"/><stop offset="50%" stop-color="#E5E7EB"/></linearGradient></defs><path fill="url(#g)" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
</div>
<div class="rating-count">53 ratings</div>
</div>
<div class="price">₹198</div>
<div class="desc">Hyderabadi Veg Dum Biryani (Raita &amp; Salan are chargeable)</div>
</div>
<div class="right">
<div class="food-img">[IMG: Veg Biryani with greens]</div>
<div class="add-btn">
ADD
<div class="plus">+</div>
</div>
<div class="customisable">customisable</div>
</div>
</div>
<div class="divider"></div>
<!-- Card 2 -->
<div class="card">
<div class="left">
<div class="row">
<div class="veg-mark"></div>
<div class="badge">Bestseller</div>
</div>
<div class="title" style="margin-top:14px;">Hyderabadi Veg Dum Biryani</div>
<div class="row" style="margin-top:16px;">
<div class="stars">
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z" opacity=".5"/></svg>
</div>
<div class="rating-count">90 ratings</div>
</div>
<div class="price">₹299</div>
<div class="desc">Hyderabadi Veg Dum Biryani with Beans, Cauliflower, Potatoes &amp; Carrots and served with Raita.</div>
</div>
<div class="right">
<div class="food-img">[IMG: Biryani Bowl]</div>
<div class="add-btn">ADD<div class="plus">+</div></div>
<div class="customisable">customisable</div>
</div>
</div>
<div class="divider"></div>
<!-- Card 3 -->
<div class="card">
<div class="left">
<div class="row">
<div class="veg-mark"></div>
<div class="badge">Bestseller</div>
</div>
<div class="title" style="margin-top:14px;">Hyderabadi Paneer Biryani</div>
<div class="row" style="margin-top:16px;">
<div class="stars">
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z"/></svg>
<svg viewBox="0 0 24 24"><path fill="#FBBF24" d="M12 17l-6.2 3.3 1.2-6.9L2 8.7l7-1L12 1.5 15 7.7l7 1-5 4.7 1.2 6.9z" opacity=".5"/></svg>
</div>
<div class="rating-count">57 ratings</div>
</div>
<div class="price">₹339</div>
<div class="desc">A delightful mix of paneer &amp; biryani rice in Hyderabadi Spices and served with Raita</div>
</div>
<div class="right">
<div class="food-img">[IMG: Paneer Biryani Pot]</div>
<div class="add-btn">ADD<div class="plus">+</div></div>
<div class="customisable">customisable</div>
</div>
</div>
</div>
<!-- Floating menu bubble -->
<div class="menu-bubble">
<div class="menu-icon">🍴</div>
<div style="font-size:44px; font-weight:700;">Menu</div>
</div>
<!-- Bottom coupon banner -->
<div class="coupon">
<div class="icon">%</div>
<div class="text">Get 40% OFF up to ₹80. Use coupon FOODIE on orders above ₹149</div>
</div>
</div>
</body>
</html>