File size: 8,046 Bytes
5501681 | 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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Nykaa Fashion - Search</title>
<style>
html, body { margin: 0; padding: 0; background: transparent; }
* { box-sizing: border-box; }
#render-target {
position: relative;
overflow: hidden;
width: 1080px;
height: 2400px;
background: #ffffff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
color: #243445;
}
/* Status bar */
.status-bar {
height: 120px;
padding: 0 36px;
display: flex;
align-items: center;
color: #6B6F75;
font-weight: 600;
font-size: 38px;
}
.status-icons { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.dot { width: 12px; height: 12px; background: #9aa0a6; border-radius: 50%; display: inline-block; }
.sb-icon {
width: 36px; height: 36px; border-radius: 50%;
border: 2px solid #AEB4BA; display: inline-block;
}
.wifi {
width: 40px; height: 28px; border: 3px solid #76808A; border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom: none;
}
.battery {
width: 48px; height: 28px; border: 3px solid #76808A; position: relative; border-radius: 6px;
}
.battery:after {
content: ""; position: absolute; right: -8px; top: 8px; width: 6px; height: 12px; background: #76808A; border-radius: 2px;
}
/* Search header */
.search-header {
padding: 8px 24px 0;
}
.search-row {
display: flex; align-items: center; gap: 24px;
padding: 14px 12px 0 12px;
}
.back-btn {
width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
}
.search-box {
flex: 1;
background: #F2F3F5;
height: 110px;
border-radius: 16px;
position: relative;
display: flex; align-items: center;
padding: 0 28px;
border-bottom: 8px solid #F3A7B6;
}
.search-input {
border: none; outline: none; background: transparent;
width: 100%;
font-size: 40px; color: #7A838C;
}
/* Horizontal category chips */
.chips-scroll {
margin-top: 18px;
padding: 0 24px 8px 24px;
overflow-x: auto; white-space: nowrap;
}
.chip-avatar {
display: inline-flex; align-items: center; gap: 16px;
padding: 12px 26px 12px 12px;
border: 2px solid #D9DCE1; border-radius: 999px; background: #fff;
margin-right: 18px;
font-size: 36px; color: #313E4D;
vertical-align: middle;
}
.chip-avatar.selected {
background: #FFE9EF; border-color: #F39BB0; color: #E3516B;
}
.avatar {
width: 78px; height: 78px; border-radius: 50%;
background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 22px;
overflow: hidden;
}
/* Cards */
.section-card {
margin: 28px 24px 0 24px;
background: #F4F6F8;
border-radius: 24px;
padding: 28px;
position: relative;
}
.section-title {
font-size: 44px;
font-weight: 700;
color: #1C3346;
margin: 8px 0 24px 6px;
}
.trash {
position: absolute; right: 28px; top: 32px; width: 48px; height: 48px;
display: flex; align-items: center; justify-content: center;
}
.chips-wrap {
display: flex; flex-wrap: wrap; gap: 22px 24px;
padding: 6px;
}
.tag {
display: inline-block;
padding: 20px 28px;
background: #fff;
border: 2px solid #D6DADF;
border-radius: 999px;
font-size: 34px;
color: #2C3E50;
max-width: 460px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.more-row {
margin-top: 18px; text-align: right; padding-right: 10px;
font-size: 36px; color: #5A6A79; font-weight: 600;
}
.divider-space { height: 16px; }
/* Bottom gesture bar */
.gesture {
position: absolute; left: 50%; transform: translateX(-50%);
bottom: 28px; width: 320px; height: 14px; background: #000; border-radius: 10px; opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
10:27
<div class="status-icons">
<span class="sb-icon"></span>
<span class="dot"></span>
<span class="sb-icon"></span>
<div class="wifi"></div>
<div class="battery"></div>
</div>
</div>
<!-- Search -->
<div class="search-header">
<div class="search-row">
<div class="back-btn" aria-label="Back">
<svg width="48" height="48" viewBox="0 0 24 24" fill="none">
<path d="M14.5 5L7.5 12l7 7" stroke="#526371" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="search-box">
<input class="search-input" placeholder="Search in Nykaa Fashion Store" />
</div>
</div>
<!-- Category chips -->
<div class="chips-scroll">
<span class="chip-avatar selected">
<span class="avatar">IMG</span>
All
</span>
<span class="chip-avatar">
<span class="avatar">IMG</span>
Women
</span>
<span class="chip-avatar">
<span class="avatar">IMG</span>
Men
</span>
<span class="chip-avatar">
<span class="avatar">IMG</span>
Kids
</span>
</div>
</div>
<!-- Recent Searches -->
<div class="section-card">
<div class="section-title">Your recent searches</div>
<div class="trash" title="Clear">
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M3 6h18M8 6V4h8v2m-9 0l1 13h8l1-13" fill="none" stroke="#E0626F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="chips-wrap">
<span class="tag">black formal shirts f...</span>
<span class="tag">pink formal shirt for...</span>
<span class="tag">formal suits for men</span>
<span class="tag">formal jeans for wo...</span>
<span class="tag">formal dresses for w...</span>
<span class="tag">Formal Trousers</span>
</div>
<div class="more-row">+4 more
<svg width="28" height="28" viewBox="0 0 24 24" style="vertical-align: -4px; margin-left: 6px;">
<path d="M6 9l6 6 6-6" fill="none" stroke="#687787" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
<!-- Trending Collections -->
<div class="section-card" style="margin-top: 28px;">
<div class="section-title">Trending Collections</div>
<div class="chips-wrap">
<span class="tag">Hidden Gems</span>
<span class="tag">Bestsellers on Nykaa</span>
<span class="tag">Exciting Deals</span>
<span class="tag">Editor's Pick</span>
<span class="tag">New on Nykaa</span>
<span class="tag">Revolve Store</span>
<span class="tag">Fit Zone</span>
</div>
</div>
<!-- Popular Categories -->
<div class="section-card" style="margin-top: 28px;">
<div class="section-title">Popular Categories</div>
<div class="chips-wrap">
<span class="tag">Co-ord Sets</span>
<span class="tag">Dresses</span>
<span class="tag">Jeans</span>
<span class="tag">Tops</span>
<span class="tag">Suits & Sets</span>
<span class="tag">Earrings</span>
<span class="tag">Sling Bags</span>
<span class="tag">Sportswear</span>
<span class="tag">Watches</span>
<span class="tag">Tech Accessories</span>
</div>
</div>
<!-- Popular Brands -->
<div class="section-card" style="margin-top: 28px;">
<div class="section-title">Popular Brands</div>
<div class="chips-wrap">
<span class="tag">Cider</span>
<span class="tag">Biba</span>
<span class="tag">Forever 21</span>
<span class="tag">Puma</span>
<span class="tag">Adidas</span>
<span class="tag">U.S.Polo Assn</span>
<span class="tag">ONLY</span>
<span class="tag">Accessorize London</span>
</div>
</div>
<!-- Bottom gesture -->
<div class="gesture"></div>
</div>
</body>
</html> |