AndroidCode / code /10128 /10128_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
0e1717f verified
raw
history blame
6.4 kB
<html>
<head>
<meta charset="UTF-8">
<title>Filters UI</title>
<style>
body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
#render-target {
width:1080px; height:2400px; position:relative; overflow:hidden;
background:#FFFFFF; border-radius:0;
}
/* Header / status gradient */
.header {
position:absolute; left:0; top:0; width:100%; height:240px;
background: linear-gradient(180deg, #b9e5d9 0%, #c4e7dc 100%);
box-sizing:border-box; padding:20px 32px;
}
.status-row {
height:40px; display:flex; align-items:center; justify-content:space-between; color:#1a1a1a;
font-size:32px; opacity:0.9;
}
.status-icons { display:flex; gap:28px; align-items:center; }
.icon {
width:34px; height:34px;
display:inline-flex; align-items:center; justify-content:center;
color:#333;
}
.title-row {
margin-top:24px; height:100px; display:flex; align-items:center; justify-content:space-between;
color:#0d0d0d;
}
.title-row .title { font-size:64px; font-weight:600; }
.title-row .close { font-size:48px; color:#0d4b63; }
/* Main area */
.content {
position:absolute; left:0; top:240px; width:100%; height:2060px; background:#fff;
display:flex;
}
.left-nav {
width:360px; background:#eef1f2; height:100%; border-right:1px solid #e0e0e0;
box-sizing:border-box; padding-top:20px;
}
.nav-item {
padding:28px 28px; font-size:42px; color:#111; border-bottom:1px solid #e7e7e7;
}
.nav-item.section { font-weight:600; }
.nav-item.selected {
background:#6f7479; color:#fff; font-weight:600;
}
.right-panel {
width:720px; padding:32px; box-sizing:border-box; overflow:hidden;
}
.panel-title {
font-size:48px; font-weight:700; color:#1c1c1c; margin:18px 0 12px 0;
}
.pill {
display:inline-flex; align-items:center; gap:16px;
background:#f5f5f5; border:1px solid #dddddd; color:#1c1c1c;
padding:28px 32px; border-radius:22px; font-size:40px; margin:14px 0;
}
.pill + .pill { margin-top:22px; }
.prime-badge {
display:inline-flex; align-items:center; gap:16px; padding:24px 32px;
background:#f6fbff; border:1px solid #d6e9ff; border-radius:18px; font-size:40px; color:#2e79c7;
}
.check-icon {
width:40px; height:40px;
}
/* Bottom sticky button */
.bottom-bar {
position:absolute; left:0; bottom:60px; width:100%; display:flex; justify-content:center;
}
.cta {
background:#1f6a78; color:#fff; font-size:46px; padding:28px 36px; border-radius:26px;
box-shadow:0 6px 12px rgba(0,0,0,0.12);
}
/* Simple SVG buttons/icons */
.svg-icon { width:40px; height:40px; }
</style>
</head>
<body>
<div id="render-target">
<div class="header">
<div class="status-row">
<div>11:04</div>
<div class="status-icons">
<div class="icon">
<!-- WiFi -->
<svg class="svg-icon" viewBox="0 0 24 24">
<path d="M2 8c5-5 15-5 20 0" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M5 12c3-3 11-3 14 0" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="12" cy="16" r="2" fill="#333"/>
</svg>
</div>
<div class="icon">
<!-- Mail -->
<svg class="svg-icon" viewBox="0 0 24 24">
<rect x="3" y="5" width="18" height="14" rx="2" fill="none" stroke="#333" stroke-width="2"/>
<path d="M3 7l9 6 9-6" fill="none" stroke="#333" stroke-width="2"/>
</svg>
</div>
<div class="icon">
<!-- Cloud -->
<svg class="svg-icon" viewBox="0 0 24 24">
<path d="M6 16h10a4 4 0 0 0 0-8 5 5 0 0 0-9 2H6a4 4 0 0 0 0 6z" fill="#333"/>
</svg>
</div>
<div class="icon">
<!-- Location -->
<svg class="svg-icon" viewBox="0 0 24 24">
<path d="M12 2c-4 0-7 3-7 7 0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 9a2 2 0 1 1 0-4 2 2 0 0 1 0 4z" fill="#333"/>
</svg>
</div>
<div class="icon">
<!-- Battery -->
<svg class="svg-icon" viewBox="0 0 28 24">
<rect x="2" y="6" width="20" height="12" rx="2" fill="none" stroke="#333" stroke-width="2"/>
<rect x="4" y="8" width="16" height="8" fill="#333"/>
<rect x="22" y="10" width="4" height="4" fill="#333"/>
</svg>
</div>
</div>
</div>
<div class="title-row">
<div class="title">Filters</div>
<div class="close">Close</div>
</div>
</div>
<div class="content">
<!-- Left navigation -->
<div class="left-nav">
<div class="nav-item section">Prime & Delivery</div>
<div class="nav-item">Categories</div>
<div class="nav-item">Brands</div>
<div class="nav-item">Colours</div>
<div class="nav-item">Sizes</div>
<div class="nav-item">Price and Deals</div>
<div class="nav-item">Customer Reviews</div>
<div class="nav-item">Sort by</div>
<div class="nav-item selected">Men's Formal Shoes</div>
<div class="nav-item">Shoes Special Features</div>
<div class="nav-item">Shoe Outer Material</div>
<div class="nav-item">Shoes Closure Type</div>
<div class="nav-item">Sole Width</div>
<div class="nav-item">Shoes Lifestyle</div>
<div class="nav-item">Lace-Up Flat Style</div>
<div class="nav-item">Shoe Toe Style</div>
<div class="nav-item">Height Map</div>
</div>
<!-- Right panel -->
<div class="right-panel">
<div class="panel-title">Delivery</div>
<div class="pill">Get It Today</div>
<div class="pill">Get It by Tomorrow</div>
<div class="pill">Get It in 2 Days</div>
<div class="panel-title" style="margin-top:36px;">Shipping Options</div>
<div class="pill">Eligible for Pay On Delivery</div>
<div class="panel-title" style="margin-top:36px;">Prime Programs</div>
<div class="prime-badge">
<svg class="check-icon" viewBox="0 0 24 24">
<path d="M5 13l4 4 10-10" stroke="#2e79c7" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
prime
</div>
</div>
</div>
<div class="bottom-bar">
<div class="cta">Show 10,000+ results</div>
</div>
</div>
</body>
</html>