AndroidCode / code /10020 /10020_5.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pizza Menu</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
color: #212121;
}
/* Status bar */
.status-bar {
height: 110px;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 40px;
color: #2b2b2b;
}
.status-icons {
display: flex;
align-items: center;
gap: 26px;
}
.dot { width: 14px; height: 14px; background: #6f6f6f; border-radius: 50%; display: inline-block; }
/* Header */
.header {
padding: 30px 48px 36px 48px;
border-bottom: 1px solid #e5e5e5;
}
.header-row {
display: flex;
align-items: center;
justify-content: space-between;
}
.title-area {
display: flex;
align-items: center;
gap: 26px;
}
.title {
font-size: 64px;
font-weight: 700;
letter-spacing: 0.5px;
}
.search-wrap {
display: flex;
align-items: center;
gap: 28px;
}
.customizable-top {
font-size: 34px;
color: #7a7a7a;
margin-top: 20px;
text-align: right;
}
.icon-btn {
width: 80px; height: 80px; border-radius: 40px; display: flex; align-items: center; justify-content: center;
}
.icon { width: 60px; height: 60px; }
/* Product list */
.list {
padding-bottom: 280px;
}
.item {
padding: 48px;
border-bottom: 1px solid #ececec;
}
.item-row {
display: flex;
justify-content: space-between;
gap: 30px;
}
.veg-dot {
width: 38px; height: 38px; border-radius: 8px; border: 2px solid #4CAF50; display: inline-block; margin-right: 18px;
}
.left {
width: 600px;
}
.name {
font-size: 54px;
font-weight: 700;
margin: 10px 0 10px;
}
.price {
font-size: 48px;
font-weight: 700;
margin: 0 0 16px;
}
.desc {
font-size: 36px;
color: #757575;
line-height: 1.4;
}
.right {
width: 360px;
display: flex;
flex-direction: column;
align-items: center;
gap: 26px;
}
.img-ph {
width: 320px; height: 320px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 160px;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 28px; text-align: center; padding: 10px;
}
.add-btn {
width: 300px; height: 96px;
border: 2px solid #7A9B77;
background: #EEF4EE;
border-radius: 18px;
display: flex; align-items: center; justify-content: center;
color: #2F6B3A; font-size: 42px; font-weight: 700;
box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}
.add-btn svg { margin-left: 14px; }
.customizable {
font-size: 34px; color: #7a7a7a;
}
/* Section footer */
.section-title {
font-size: 58px;
font-weight: 800;
margin: 70px 0 16px 48px;
letter-spacing: 0.5px;
}
.section-underline {
width: 300px; height: 10px; background: #376a3f; border-radius: 6px; margin-left: 48px;
}
/* Floating menu button */
.floating-menu {
position: absolute;
right: 180px;
bottom: 320px;
background: #000000;
color: #ffffff;
padding: 30px 44px;
border-radius: 30px;
box-shadow: 0 12px 30px rgba(0,0,0,0.25);
display: inline-flex;
align-items: center;
gap: 20px;
font-size: 44px;
font-weight: 700;
}
.floating-menu svg { width: 52px; height: 52px; }
/* Bottom safe area */
.bottom-bar {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 160px;
background: #000000;
}
.home-indicator {
position: absolute;
bottom: 56px;
left: 50%;
transform: translateX(-50%);
width: 220px; height: 16px;
background: #ffffff;
border-radius: 12px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>2:02</div>
<div class="status-icons">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<!-- WiFi icon -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 18.5l2.5-2.5a3.5 3.5 0 0 0-5 0L12 18.5zm-5-5l2-2a6 6 0 0 1 8 0l2 2-2 2a6 6 0 0 0-8 0l-2-2zm-5-5l3-3a12 12 0 0 1 16 0l3 3-2 2a12 12 0 0 0-18 0l-2-2z" fill="#3b3b3b"></path>
</svg>
<!-- Battery icon -->
<svg class="icon" viewBox="0 0 24 24">
<rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#3b3b3b" stroke-width="2"></rect>
<rect x="4" y="8" width="14" height="8" fill="#3b3b3b"></rect>
<rect x="20" y="10" width="2" height="4" fill="#3b3b3b"></rect>
</svg>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="header-row">
<div class="title-area">
<!-- Back icon -->
<svg class="icon" 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"></path>
</svg>
<div class="title">Pizza</div>
</div>
<div class="search-wrap">
<!-- Search icon -->
<svg class="icon" viewBox="0 0 24 24">
<circle cx="11" cy="11" r="6.5" stroke="#222" stroke-width="2" fill="none"></circle>
<path d="M16 16l5 5" stroke="#222" stroke-width="2" stroke-linecap="round"></path>
</svg>
</div>
</div>
<div class="customizable-top">Customizable</div>
</div>
<!-- Product List -->
<div class="list">
<!-- Item 1 -->
<div class="item">
<div class="item-row">
<div class="left">
<div><span class="veg-dot"></span></div>
<div class="name">Corn Wave</div>
<div class="price">₹155</div>
<div class="desc">Sweet &amp; juicy golden corn with real mozzarella &amp; cheddar cheese</div>
</div>
<div class="right">
<div class="img-ph">[IMG: Corn Pizza]</div>
<div class="add-btn">
ADD
<svg viewBox="0 0 24 24">
<path d="M12 5v14M5 12h14" stroke="#2F6B3A" stroke-width="3" stroke-linecap="round"></path>
</svg>
</div>
<div class="customizable">Customizable</div>
</div>
</div>
</div>
<!-- Item 2 -->
<div class="item">
<div class="item-row">
<div class="left">
<div><span class="veg-dot"></span></div>
<div class="name">Makhani Mashhoor</div>
<div class="price">₹155</div>
<div class="desc">Crisp onion over makhani sauce with real mozzarella &amp; cheddar cheese</div>
</div>
<div class="right">
<div class="img-ph">[IMG: Makhani Onion Pizza]</div>
<div class="add-btn">
ADD
<svg viewBox="0 0 24 24">
<path d="M12 5v14M5 12h14" stroke="#2F6B3A" stroke-width="3" stroke-linecap="round"></path>
</svg>
</div>
<div class="customizable">Customizable</div>
</div>
</div>
</div>
<!-- Item 3 -->
<div class="item">
<div class="item-row">
<div class="left">
<div><span class="veg-dot"></span></div>
<div class="name">Onion Punch</div>
<div class="price">₹155</div>
<div class="desc">crispy onion with real mozzarella &amp; cheddar cheese</div>
</div>
<div class="right">
<div class="img-ph">[IMG: Onion Pizza]</div>
<div class="add-btn">
ADD
<svg viewBox="0 0 24 24">
<path d="M12 5v14M5 12h14" stroke="#2F6B3A" stroke-width="3" stroke-linecap="round"></path>
</svg>
</div>
<div class="customizable">Customizable</div>
</div>
</div>
</div>
<!-- Section footer -->
<div class="section-title">SIMPLY VEG</div>
<div class="section-underline"></div>
</div>
<!-- Floating menu button -->
<div class="floating-menu">
<svg viewBox="0 0 24 24">
<path d="M6 2v8M4 10h4M14 3l7 7M14 10l7-7" stroke="#ffffff" stroke-width="2" stroke-linecap="round" fill="none"></path>
</svg>
MENU
</div>
<!-- Bottom safe area -->
<div class="bottom-bar">
<div class="home-indicator"></div>
</div>
</div>
</body>
</html>