File size: 6,400 Bytes
0e1717f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | <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> |