File size: 7,170 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 185 186 187 188 189 190 191 192 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Party Wear - Listing</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color:#222; }
#render-target {
width: 1080px; height: 2400px; position: relative; overflow: hidden; background: #fff;
}
/* Top app bar */
.header {
height: 160px;
padding: 32px 48px 24px 48px;
display: flex; align-items: flex-end; justify-content: space-between;
border-bottom: 1px solid #eee;
}
.header-left { display: flex; align-items: center; gap: 24px; }
.title { font-size: 44px; letter-spacing: 1px; font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: 28px; }
/* Controls row */
.controls {
height: 120px;
padding: 0 48px;
display: flex; align-items: center; justify-content: space-between;
border-bottom: 1px solid #eee;
}
.control-left, .control-right { font-size: 36px; font-weight: 700; letter-spacing: 0.5px; }
.muted { color: #777; font-weight: 500; }
.found {
text-align: center; color: #777; font-size: 34px; margin: 28px 0 16px 0;
}
/* Product grid */
.products {
padding: 12px 48px 0 48px;
display: grid; grid-template-columns: 1fr 1fr;
column-gap: 48px; row-gap: 64px;
}
.card { }
.img {
width: 100%; height: 680px;
background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
display: flex; align-items: center; justify-content: center; text-align: center;
position: relative; font-size: 30px; padding: 18px; box-sizing: border-box;
}
.ribbon {
position: absolute; top: 0; left: 0; right: 0;
height: 80px; background: #2b2b2b; color: #fff;
display: flex; align-items: center; justify-content: center;
text-transform: uppercase; font-weight: 800; font-size: 28px; letter-spacing: 1px;
}
.badge {
position: absolute; left: 24px; bottom: 24px;
background: rgba(240,240,240,0.96); color: #444;
padding: 18px 22px; font-weight: 700; font-size: 26px; letter-spacing: .5px;
border-radius: 2px; border: 1px solid #d0d0d0;
}
.price-row {
display: flex; align-items: center; justify-content: space-between;
margin-top: 26px;
}
.price { font-size: 44px; font-weight: 800; letter-spacing: .3px; }
.name {
margin-top: 16px; font-size: 32px; line-height: 44px; color: #444;
}
/* Bottom handle */
.handle {
position: absolute; left: 50%; transform: translateX(-50%);
bottom: 30px; width: 280px; height: 14px; background: #CFCFCF; border-radius: 10px;
}
/* Icon defaults */
svg { display: block; }
.icon-24 { width: 48px; height: 48px; }
.icon-28 { width: 56px; height: 56px; }
.chev { width: 40px; height: 40px; margin-left: 10px; }
.control-left span { vertical-align: middle; }
</style>
</head>
<body>
<div id="render-target">
<!-- Top App Bar -->
<div class="header">
<div class="header-left">
<!-- Back Arrow -->
<svg class="icon-28" viewBox="0 0 24 24" aria-hidden="true">
<path d="M14 5L7 12l7 7" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="title">PARTY WEAR</div>
</div>
<div class="header-actions">
<!-- Heart outline -->
<svg class="icon-28" viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 21c-4.8-3.7-8-6.6-8-10.2C4 8.2 6 6.5 8.2 6.5c1.5 0 2.8.8 3.8 2 1-1.2 2.3-2 3.8-2C18 6.5 20 8.2 20 10.8c0 3.6-3.2 6.5-8 10.2z" fill="none" stroke="#111" stroke-width="1.8" stroke-linejoin="round"/>
</svg>
<!-- Search -->
<svg class="icon-28" viewBox="0 0 24 24" aria-hidden="true">
<circle cx="11" cy="11" r="7" fill="none" stroke="#111" stroke-width="2"/>
<path d="M20 20l-3.5-3.5" stroke="#111" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
<!-- Controls Row -->
<div class="controls">
<div class="control-left">
<span>RECOMMENDED</span>
<svg class="chev" viewBox="0 0 24 24" aria-hidden="true">
<path d="M6 9l6 6 6-6" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="control-right">FILTER</div>
</div>
<!-- Items Found -->
<div class="found">5690 items found</div>
<!-- Product Grid -->
<div class="products">
<!-- Card 1 -->
<div class="card">
<div class="img">
[IMG: Black ruffle top outfit at night]
<div class="badge">MORE COLOURS</div>
</div>
<div class="price-row">
<div class="price">£90.00</div>
<svg class="icon-24" viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 21c-4.8-3.7-8-6.6-8-10.2C4 8.2 6 6.5 8.2 6.5c1.5 0 2.8.8 3.8 2 1-1.2 2.3-2 3.8-2C18 6.5 20 8.2 20 10.8c0 3.6-3.2 6.5-8 10.2z" fill="none" stroke="#111" stroke-width="1.8" stroke-linejoin="round"/>
</svg>
</div>
<div class="name">ASOS LUXE Premium 3D velvet ruffle top in black</div>
</div>
<!-- Card 2 -->
<div class="card">
<div class="img">
<div class="ribbon">SELLING FAST</div>
[IMG: Slingback mid-heeled shoes on leather car seat]
<div class="badge">MORE COLOURS</div>
</div>
<div class="price-row">
<div class="price">£30.00</div>
<svg class="icon-24" viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 21c-4.8-3.7-8-6.6-8-10.2C4 8.2 6 6.5 8.2 6.5c1.5 0 2.8.8 3.8 2 1-1.2 2.3-2 3.8-2C18 6.5 20 8.2 20 10.8c0 3.6-3.2 6.5-8 10.2z" fill="none" stroke="#111" stroke-width="1.8" stroke-linejoin="round"/>
</svg>
</div>
<div class="name">ASOS DESIGN Strut slingback mid heeled shoes ...</div>
</div>
<!-- Card 3 -->
<div class="card">
<div class="img">
[IMG: Blazer and bralet outfit at night by riverside]
</div>
<div class="price-row">
<div class="price">£19.00</div>
<svg class="icon-24" viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 21c-4.8-3.7-8-6.6-8-10.2C4 8.2 6 6.5 8.2 6.5c1.5 0 2.8.8 3.8 2 1-1.2 2.3-2 3.8-2C18 6.5 20 8.2 20 10.8c0 3.6-3.2 6.5-8 10.2z" fill="none" stroke="#111" stroke-width="1.8" stroke-linejoin="round"/>
</svg>
</div>
<div class="name">ASOS DESIGN hotfix bralet in black</div>
</div>
<!-- Card 4 -->
<div class="card">
<div class="img">
[IMG: Metallic maxi skirt in silver studio shot]
</div>
<div class="price-row">
<div class="price">£48.00</div>
<svg class="icon-24" viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 21c-4.8-3.7-8-6.6-8-10.2C4 8.2 6 6.5 8.2 6.5c1.5 0 2.8.8 3.8 2 1-1.2 2.3-2 3.8-2C18 6.5 20 8.2 20 10.8c0 3.6-3.2 6.5-8 10.2z" fill="none" stroke="#111" stroke-width="1.8" stroke-linejoin="round"/>
</svg>
</div>
<div class="name">4th & Reckless metallic maxi skirt in silver</div>
</div>
</div>
<!-- Bottom gesture handle -->
<div class="handle"></div>
</div>
</body>
</html> |