AndroidCode / code /10184 /10184_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
5501681 verified
raw
history blame
9.3 kB
<html>
<head>
<meta charset="UTF-8">
<title>Mobile UI - Biryani Blues Menu</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #f7f7f7;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 120px;
background: #0d0d0d;
color: #fff;
display: flex;
align-items: center;
padding: 0 36px;
box-sizing: border-box;
font-weight: 600;
letter-spacing: 0.2px;
}
.status-left { display: flex; align-items: center; gap: 18px; }
.status-time { font-size: 40px; }
.status-right { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.icon-cloud, .icon-wifi, .icon-battery {
width: 44px; height: 44px;
}
/* Page header */
.page {
position: absolute;
top: 120px;
left: 0;
width: 1080px;
height: 2280px;
box-sizing: border-box;
padding: 40px 40px 160px;
color: #222;
}
.top-actions {
display: flex;
align-items: center;
gap: 28px;
color: #222;
}
.top-actions .spacer { flex: 1; }
.ico {
width: 64px; height: 64px; border-radius: 32px;
display: flex; align-items: center; justify-content: center;
}
.ico svg { width: 36px; height: 36px; }
.title {
font-size: 68px;
font-weight: 800;
margin-top: 26px;
}
.subtext {
color: #666;
font-size: 34px;
margin-top: 8px;
}
.rating-row {
display: flex;
align-items: center;
gap: 20px;
margin-top: 30px;
color: #444;
font-size: 34px;
}
.pill-green {
background: #1aa34a;
color: #fff;
padding: 12px 18px;
border-radius: 20px;
font-weight: 700;
display: inline-flex; align-items: center; gap: 10px;
}
.meta-row {
display: flex;
align-items: center;
gap: 24px;
color: #333;
font-size: 32px;
margin-top: 24px;
}
.chip {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 18px 24px;
border: 1px solid #ddd;
border-radius: 36px;
font-size: 32px;
color: #333;
background: #fff;
}
.chip.green { color: #2e7d32; border-color: #c8e6c9; }
.chip.orange { color: #bf360c; border-color: #ffc9a7; }
.chips {
display: flex; gap: 18px; margin-top: 34px;
}
.banner {
margin-top: 30px;
width: 100%;
height: 180px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 36px;
border-radius: 16px;
}
/* Overlay scrim */
.scrim {
position: absolute;
top: 120px;
left: 0;
width: 1080px;
height: 2280px;
background: rgba(0,0,0,0.55);
}
/* Bottom sheet modal */
.modal {
position: absolute;
left: 50px;
bottom: 360px;
width: 980px;
height: 1280px;
background: #fff;
border-radius: 40px;
box-shadow: 0 24px 80px rgba(0,0,0,0.35);
overflow: hidden;
z-index: 5;
}
.modal-inner {
height: 100%;
overflow-y: auto;
padding: 40px 50px 60px;
box-sizing: border-box;
}
.modal h1 {
margin: 0;
font-size: 62px;
font-weight: 800;
color: #222;
}
.section-head {
margin-top: 36px;
display: flex; align-items: baseline;
font-size: 44px;
font-weight: 800;
color: #f15b6c;
}
.section-head .count {
margin-left: auto;
color: #db3e50;
font-weight: 800;
font-size: 44px;
}
.list {
margin-top: 18px;
border-top: 1px solid #eee;
}
.row {
display: flex;
align-items: center;
padding: 34px 0;
font-size: 40px;
color: #32363a;
border-bottom: 1px solid #eee;
}
.row .num {
margin-left: auto;
color: #6b6f76;
font-weight: 700;
font-size: 40px;
}
/* Close pill */
.close-pill {
position: absolute;
bottom: 180px;
left: 50%;
transform: translateX(-50%);
background: #2b2b2b;
color: #fff;
padding: 24px 36px;
border-radius: 36px;
display: flex; align-items: center; gap: 24px;
z-index: 6;
box-shadow: 0 12px 30px rgba(0,0,0,0.4);
font-size: 40px;
}
.close-pill .xbox {
width: 72px; height: 72px;
background: #ebc38f;
border-radius: 16px;
display: flex; align-items: center; justify-content: center;
color: #5b2c00;
font-weight: 900;
font-size: 42px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">
<div class="status-time">11:48</div>
<!-- simple cloud glyph -->
<svg class="icon-cloud" viewBox="0 0 24 24" fill="#fff">
<path d="M6 15a4 4 0 0 1 1-8c1.4-3 6-3 7 1h1a4 4 0 0 1 0 8H6z"/>
</svg>
</div>
<div class="status-right">
<svg class="icon-wifi" viewBox="0 0 24 24" fill="#fff">
<path d="M2 9c5-5 15-5 20 0l-2 2c-4-4-12-4-16 0L2 9zm4 4c3-3 9-3 12 0l-2 2c-2-2-6-2-8 0l-2-2zm4 4l2 2 2-2-2-2-2 2z"/>
</svg>
<svg class="icon-battery" viewBox="0 0 24 24" fill="#fff">
<path d="M2 8h16v8H2V8zm18 3h2v2h-2v-2z"/>
</svg>
</div>
</div>
<!-- Underlying Page Content -->
<div class="page">
<div class="top-actions">
<div class="ico">
<svg viewBox="0 0 24 24" fill="#222"><path d="M15 18l-6-6 6-6v12z"/></svg>
</div>
<div class="spacer"></div>
<div class="ico">
<svg viewBox="0 0 24 24" fill="#222"><path d="M15.5 14h-.79l-.28-.27A6.5 6.5 0 1 0 16 9.5l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0A4.5 4.5 0 1 1 14 9.5 4.5 4.5 0 0 1 9.5 14z"/></svg>
</div>
<div class="ico">
<svg viewBox="0 0 24 24" fill="#222"><path d="M12 21s-6-4.35-9-8.35C-1 6 3 2 7.5 3.5 9.25 4.1 10.32 5.38 12 7c1.68-1.62 2.75-2.9 4.5-3.5C21 2 25 6 21 12.65 18 16.65 12 21 12 21z"/></svg>
</div>
<div class="ico">
<svg viewBox="0 0 24 24" fill="#222"><path d="M18 16.08V10h-2v6.08l-3.5-2.11-.5-.29-.5.29L7 16.08V10H5v8l7-4 6 3.43V18h-2v-1.92z"/></svg>
</div>
<div class="ico">
<svg viewBox="0 0 24 24" fill="#222"><path d="M12 16h8v2h-8zm0-5h8v2h-8zm0-5h8v2h-8zM4 6h2v2H4zm0 5h2v2H4zm0 5h2v2H4z"/></svg>
</div>
</div>
<div class="title">Biryani Blues</div>
<div class="subtext">Biryani · Kebab · Desserts</div>
<div class="rating-row">
<div class="pill-green">
4.1
<svg viewBox="0 0 24 24" fill="#fff" width="24" height="24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>
</div>
<div>16.4K reviews</div>
</div>
<div class="meta-row">
<span>40–45 min</span>
<span>·</span>
<span>8 km</span>
<span>·</span>
<span>Sector 56</span>
<svg viewBox="0 0 24 24" width="28" height="28" fill="#333" style="margin-left:6px"><path d="M9 6l6 6-6 6V6z"/></svg>
</div>
<div class="banner">[IMG: Offer banner - 40% OFF up to ₹80]</div>
<div class="chips">
<div class="chip green">
<svg viewBox="0 0 24 24" width="28" height="28" fill="#2e7d32"><circle cx="12" cy="12" r="10"/></svg>
Veg
<span style="margin-left:10px; color:#999;">×</span>
</div>
<div class="chip">
<svg viewBox="0 0 24 24" width="28" height="28" fill="#a33"><rect x="6" y="6" width="12" height="12" rx="6"/></svg>
Non-veg
</div>
<div class="chip orange">
<svg viewBox="0 0 24 24" width="28" height="28" fill="#bf360c"><path d="M12 2l3 7h7l-5.5 4.5L18 22l-6-4-6 4 1.5-8.5L2 9h7z"/></svg>
Bestseller
</div>
<div class="chip">
<svg viewBox="0 0 24 24" width="28" height="28" fill="#f0a800"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z"/></svg>
Top rated
</div>
</div>
</div>
<!-- Dark Overlay -->
<div class="scrim"></div>
<!-- Bottom Sheet Modal -->
<div class="modal">
<div class="modal-inner">
<h1>Menu</h1>
<div class="section-head">
<span>Recommended</span>
<span class="count">13</span>
</div>
<div class="list">
<div class="row">
<span>New Launches</span>
<span class="num">5</span>
</div>
<div class="row">
<span>Hyderabadi Dum Biryanis</span>
<span class="num">5</span>
</div>
<div class="row">
<span>Brown Rice Biryanis (Healthy Items)</span>
<span class="num">3</span>
</div>
<div class="row">
<span>Meal Combos</span>
<span class="num">2</span>
</div>
<div class="row">
<span>Celebration Handi Biryanis</span>
<span class="num">6</span>
</div>
<div class="row">
<span>Exclusive Mini Biryanis Starting @ Rs.99/-</span>
<span class="num">5</span>
</div>
<div class="row">
<span>Kebabs &amp; Starters</span>
<span class="num">4</span>
</div>
</div>
</div>
</div>
<!-- Close pill -->
<div class="close-pill">
<div class="xbox">×</div>
<div>Close</div>
</div>
</div>
</body>
</html>