AndroidCode / code /10022 /10022_0.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Bruschetta UI</title>
<style>
body { margin:0; padding:0; background:transparent; }
* { box-sizing: border-box; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #fafafa;
border-radius: 0;
box-shadow: none;
font-family: Arial, Helvetica, sans-serif;
color: #222;
}
/* Status bar */
.status {
position: absolute;
top: 0;
left: 0;
height: 100px;
width: 100%;
background: #3f3f3f;
color: #fff;
padding: 24px 32px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 36px;
letter-spacing: 0.2px;
}
.status .left { display: flex; align-items: center; gap: 20px; }
.status .right { display: flex; align-items: center; gap: 24px; }
.status svg { width: 38px; height: 38px; fill: none; stroke: #fff; stroke-width: 3; }
/* Search bar */
.search-bar {
position: absolute;
top: 100px;
left: 0;
width: 100%;
height: 140px;
background: #ffffff;
border-bottom: 1px solid #e0e0e0;
display: flex;
align-items: center;
padding: 0 36px;
gap: 24px;
}
.search-bar .icon {
width: 56px; height: 56px;
}
.search-bar .query {
font-size: 60px;
font-weight: 700;
color: #8e8e8e;
letter-spacing: 0.5px;
}
/* Filters bar */
.filters {
position: absolute;
top: 240px;
left: 0;
width: 100%;
height: 90px;
background: #000;
color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 36px;
font-size: 32px;
}
.filters .left { display: flex; gap: 24px; align-items: center; }
.filters .results { color: #9e9e9e; font-weight: 700; }
.filters .zero { color: #ff9800; font-weight: 800; }
.filters .right { display:flex; align-items:center; gap: 12px; }
.filters .right .text { font-weight: 700; letter-spacing: 1px; }
.filters svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 3; }
/* Image placeholders */
.image-box {
width: 100%;
height: 100%;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 36px;
letter-spacing: 0.3px;
position: relative;
}
/* Hero section */
.hero {
position: absolute;
top: 330px;
left: 0;
width: 100%;
height: 900px;
}
.hero .gradient {
position: absolute;
left: 0; bottom: 0;
width: 100%; height: 340px;
background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
pointer-events: none;
}
.hero .text {
position: absolute;
bottom: 60px;
left: 36px;
color: #fff;
}
.hero .title {
font-size: 72px;
font-weight: 800;
margin-bottom: 12px;
}
.hero .subtitle {
font-size: 32px;
letter-spacing: 2px;
opacity: 0.9;
text-transform: uppercase;
margin-bottom: 20px;
}
.hero .saves {
display: flex;
align-items: center;
gap: 16px;
font-size: 32px;
}
.hero .saves svg { width: 36px; height: 36px; stroke: #fff; fill: none; stroke-width: 3; }
.fab {
position: absolute;
right: 36px;
top: 600px;
width: 96px;
height: 96px;
background: #35b8b0;
border-radius: 50%;
box-shadow: 0 10px 20px rgba(0,0,0,0.25);
display:flex; align-items:center; justify-content:center;
}
.fab svg { width: 48px; height: 48px; stroke: #fff; stroke-width: 6; }
/* Secondary image */
.secondary-image {
position: absolute;
top: 1230px;
left: 0;
width: 100%;
height: 800px;
}
/* Bottom navigation */
.bottom-nav {
position: absolute;
left: 0;
bottom: 150px;
width: 100%;
height: 220px;
background: #ffffff;
border-top: 1px solid #dddddd;
display: flex;
align-items: center;
justify-content: space-around;
padding: 0 40px;
}
.nav-item {
display: flex;
align-items: center;
justify-content: center;
width: 120px;
height: 120px;
}
.nav-item svg {
width: 84px; height: 84px;
stroke: #444; fill: none; stroke-width: 5;
}
.nav-item.search svg { stroke: #2bb59f; }
/* System gesture bar */
.system-bar {
position: absolute;
bottom: 0;
left: 0;
height: 150px;
width: 100%;
background: #3f3f3f;
display: flex;
align-items: center;
justify-content: center;
}
.gesture-pill {
width: 260px;
height: 16px;
background: #eaeaea;
border-radius: 12px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status">
<div class="left">
<div>8:40</div>
<div>18°</div>
<div>M</div>
<div>32°</div>
</div>
<div class="right">
<!-- WiFi -->
<svg viewBox="0 0 24 24">
<path d="M2 8c10-7 10-7 20 0"></path>
<path d="M5 11c7-5 7-5 14 0"></path>
<path d="M8 14c4-3 4-3 8 0"></path>
<circle cx="12" cy="18" r="1.5" fill="#fff" stroke="none"></circle>
</svg>
<!-- Battery -->
<svg viewBox="0 0 26 16">
<rect x="1" y="2" width="20" height="12" rx="2"></rect>
<rect x="22" y="5" width="3" height="6" rx="1"></rect>
<rect x="4" y="4" width="14" height="8" fill="#fff" stroke="none"></rect>
</svg>
</div>
</div>
<!-- Search Bar -->
<div class="search-bar">
<svg class="icon" viewBox="0 0 24 24">
<circle cx="10" cy="10" r="7" stroke="#757575" stroke-width="2" fill="none"></circle>
<path d="M16 16 L22 22" stroke="#757575" stroke-width="2"></path>
</svg>
<div class="query">bruschetta</div>
</div>
<!-- Filters Bar -->
<div class="filters">
<div class="left">
<div class="results">2K+ RESULTS</div>
<div class="zero">0 FILTERS</div>
</div>
<div class="right">
<div class="text">FILTER</div>
<svg viewBox="0 0 24 24">
<rect x="6" y="9" width="12" height="10" rx="2"></rect>
<path d="M9 9V7a3 3 0 0 1 6 0v2" stroke-linecap="round"></path>
</svg>
</div>
</div>
<!-- Hero Image -->
<div class="hero">
<div class="image-box">
<div>[IMG: Bruschetta Tray - Top View]</div>
</div>
<div class="gradient"></div>
<div class="text">
<div class="title">Bruschetta</div>
<div class="subtitle">SUMPTUOUS LIVING</div>
<div class="saves">
<svg viewBox="0 0 24 24">
<path d="M6 3h12v18l-6-4-6 4z"></path>
</svg>
<div>11K SAVES</div>
</div>
</div>
<div class="fab">
<svg viewBox="0 0 24 24">
<path d="M12 5v14M5 12h14"></path>
</svg>
</div>
</div>
<!-- Secondary Image -->
<div class="secondary-image">
<div class="image-box">
<div>[IMG: Bruschetta Close-up on Plate]</div>
</div>
</div>
<!-- Bottom Navigation -->
<div class="bottom-nav">
<div class="nav-item home">
<svg viewBox="0 0 24 24">
<path d="M3 11l9-8 9 8"></path>
<path d="M5 10v10h14V10"></path>
</svg>
</div>
<div class="nav-item search">
<svg viewBox="0 0 24 24">
<circle cx="11" cy="11" r="6"></circle>
<path d="M16 16L22 22"></path>
</svg>
</div>
<div class="nav-item user">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="8" r="4"></circle>
<path d="M4 22c2-5 14-5 16 0"></path>
</svg>
</div>
<div class="nav-item calendar">
<svg viewBox="0 0 24 24">
<rect x="3" y="5" width="18" height="16" rx="2"></rect>
<path d="M3 9h18"></path>
<path d="M7 3v4M17 3v4"></path>
</svg>
</div>
<div class="nav-item sliders">
<svg viewBox="0 0 24 24">
<path d="M4 6h10"></path>
<circle cx="16" cy="6" r="2"></circle>
<path d="M4 12h16"></path>
<circle cx="8" cy="12" r="2"></circle>
<path d="M4 18h12"></path>
<circle cx="14" cy="18" r="2"></circle>
</svg>
</div>
<div class="nav-item clip">
<svg viewBox="0 0 24 24">
<path d="M7 12l7-7a4 4 0 0 1 6 6l-8 8a6 6 0 0 1-9-9l8-8"></path>
</svg>
</div>
</div>
<!-- System Gesture Bar -->
<div class="system-bar">
<div class="gesture-pill"></div>
</div>
</div>
</body>
</html>