File size: 6,175 Bytes
fa881a6 | 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 269 270 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Bag - Empty</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #FFFFFF;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
color: #212121;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 120px;
background: #2A2A2A;
color: #fff;
}
.status-content {
position: absolute;
left: 34px;
right: 34px;
top: 26px;
height: 68px;
display: flex;
align-items: center;
justify-content: space-between;
font-weight: 600;
}
.status-left {
display: flex;
align-items: center;
gap: 22px;
font-size: 42px;
}
.status-right {
display: flex;
align-items: center;
gap: 26px;
}
.status-icon svg { width: 40px; height: 40px; fill: none; stroke: #fff; stroke-width: 4; }
/* Promo banner */
.promo {
position: absolute;
top: 120px;
left: 0;
width: 1080px;
height: 160px;
background: #86D4E8;
color: #0B0B0B;
}
.promo .inner {
position: absolute;
left: 24px;
right: 24px;
top: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.promo .text {
flex: 1;
text-align: center;
font-size: 36px;
line-height: 1.2;
font-weight: 600;
}
.promo .action {
color: #005EA6;
text-decoration: underline;
font-weight: 700;
}
.promo-btn {
width: 66px;
height: 66px;
border-radius: 33px;
background: rgba(0,0,0,0.12);
display: flex;
align-items: center;
justify-content: center;
}
.promo-btn svg { width: 28px; height: 28px; fill: #000; }
/* App header */
.header {
position: absolute;
top: 280px;
left: 0;
width: 1080px;
height: 160px;
background: #C81423;
color: #fff;
}
.header .inner {
position: absolute;
left: 24px;
right: 24px;
top: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.header-left {
display: flex;
align-items: center;
gap: 26px;
}
.back-btn svg { width: 72px; height: 72px; stroke: #fff; stroke-width: 10; fill: none; }
.title {
font-size: 56px;
font-weight: 700;
letter-spacing: 0.2px;
}
.header-actions {
display: flex;
align-items: center;
gap: 34px;
}
.action-icon {
width: 84px;
height: 84px;
display: flex;
align-items: center;
justify-content: center;
}
.action-icon svg { width: 70px; height: 70px; stroke: #fff; stroke-width: 8; fill: none; }
/* Empty state */
.content {
position: absolute;
top: 440px; /* below header */
bottom: 120px; /* above system nav */
left: 0;
right: 0;
background: #FFFFFF;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.empty-text {
color: #9E9E9E;
font-size: 60px;
line-height: 1.4;
font-weight: 600;
}
/* System navigation bar */
.sys-nav {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 120px;
background: #000000;
}
.nav-pill {
position: absolute;
left: 50%;
top: 38px;
transform: translateX(-50%);
width: 240px;
height: 12px;
border-radius: 12px;
background: #E0E0E0;
opacity: 0.95;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-content">
<div class="status-left">
<div>2:01</div>
<div class="status-icon">
<svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/></svg>
</div>
<div class="status-icon">
<svg viewBox="0 0 24 24"><rect x="4" y="4" width="16" height="16"/></svg>
</div>
<div class="status-icon">
<svg viewBox="0 0 24 24"><rect x="3" y="6" width="18" height="12" rx="2"/></svg>
</div>
</div>
<div class="status-right">
<div class="status-icon">
<svg viewBox="0 0 24 24"><path d="M12 2l10 10-10 10"/></svg>
</div>
<div class="status-icon">
<svg viewBox="0 0 24 24"><path d="M3 12h18"/><path d="M12 3v18"/></svg>
</div>
</div>
</div>
</div>
<!-- Promo Banner -->
<div class="promo">
<div class="inner">
<div class="promo-btn">
<svg viewBox="0 0 24 24"><path d="M15 5L8 12l7 7"/></svg>
</div>
<div class="text">Use code NEW10 and get addn. 10% off on cart value Rs. 2099 and above!! <span class="action">SHOP NOW</span></div>
<div class="promo-btn">
<svg viewBox="0 0 24 24"><path d="M9 5l7 7-7 7"/></svg>
</div>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="inner">
<div class="header-left">
<div class="back-btn">
<svg viewBox="0 0 100 100"><path d="M65 20 L35 50 L65 80"/></svg>
</div>
<div class="title">Bag</div>
</div>
<div class="header-actions">
<div class="action-icon">
<svg viewBox="0 0 24 24">
<circle cx="11" cy="11" r="7"/>
<path d="M20 20l-4-4"/>
</svg>
</div>
<div class="action-icon">
<svg viewBox="0 0 24 24">
<path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z"/>
</svg>
</div>
<div class="action-icon">
<svg viewBox="0 0 24 24">
<rect x="5" y="8" width="14" height="12" rx="2"/>
<path d="M9 8V6a3 3 0 0 1 6 0v2"/>
</svg>
</div>
</div>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="empty-text">
No bag available.<br/>Please add an Product
</div>
</div>
<!-- System Navigation -->
<div class="sys-nav">
<div class="nav-pill"></div>
</div>
</div>
</body>
</html> |