File size: 5,509 Bytes
ff1f000 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Estée Lauder - Mobile UI Mock</title>
<meta name="viewport" content="width=1080, initial-scale=1.0">
<style>
body { margin: 0; padding: 0; background: transparent; font-family: "Georgia", "Times New Roman", serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
box-sizing: border-box;
}
/* Top promo banner */
.promo-banner {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 140px;
background: #0b1338;
color: #e8ebff;
}
.promo-banner .label {
position: absolute;
top: 48px;
left: 0;
width: 100%;
text-align: center;
font-size: 44px;
letter-spacing: 1px;
text-decoration: underline;
}
.promo-banner .close {
position: absolute;
right: 36px;
top: 36px;
width: 64px;
height: 64px;
}
.promo-banner .close svg { width: 64px; height: 64px; stroke: #cfd4ff; stroke-width: 8; }
/* Header */
.header {
position: absolute;
top: 140px;
left: 0;
width: 1080px;
height: 190px;
background: #ffffff;
border-bottom: 2px solid #e9edf5;
}
.header .left,
.header .right {
position: absolute;
top: 50%;
transform: translateY(-50%);
display: flex;
align-items: center;
gap: 20px;
}
.header .left { left: 36px; }
.header .right { right: 36px; color: #0b1338; font-size: 36px; font-family: Arial, Helvetica, sans-serif; }
.header .brand {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -45%);
font-size: 84px;
letter-spacing: 6px;
color: #0b1338;
}
.icon-btn svg { width: 72px; height: 72px; stroke: #0b1338; stroke-width: 8; fill: none; }
.cart svg { width: 70px; height: 70px; stroke: #0b1338; stroke-width: 8; fill: none; }
/* Content area with spinner */
.content {
position: absolute;
top: 330px;
left: 0;
width: 1080px;
height: 900px;
background: #ffffff;
}
.spinner {
position: absolute;
top: 280px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 100px;
border-radius: 50%;
border: 8px solid #cfd4db;
border-top-color: #0b1338;
animation: spin 1.2s linear infinite;
}
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }
/* Footer sections */
.footer {
position: absolute;
top: 1230px;
left: 0;
width: 1080px;
height: 1040px;
background: #0b1338;
color: #dfe5ff;
}
.footer h2 {
margin: 50px 48px 20px;
font-size: 64px;
font-weight: normal;
}
.list {
margin: 10px 0 0;
padding: 0;
list-style: none;
border-top: 1px solid #151c4f;
border-bottom: 1px solid #151c4f;
}
.list li {
padding: 42px 48px;
font-size: 44px;
border-top: 1px solid #151c4f;
color: #cbd1ff;
}
.list li:first-child { border-top: none; }
.footer .about h2 { margin-top: 70px; }
/* Bottom action bar */
.bottom-actions {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 120px;
background: rgba(10, 19, 56, 0.95);
border-top: 1px solid #1b2158;
display: flex;
align-items: center;
justify-content: center;
gap: 60px;
}
.action-btn {
padding: 18px 40px;
color: #f3f6ff;
font-size: 40px;
letter-spacing: 2px;
border: 2px solid #2a3170;
border-radius: 8px;
}
.divider {
width: 2px;
height: 60px;
background: #2a3170;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Top Promotion Banner -->
<div class="promo-banner">
<div class="label">CHOOSE NOW</div>
<div class="close">
<svg viewBox="0 0 24 24">
<line x1="4" y1="4" x2="20" y2="20"></line>
<line x1="20" y1="4" x2="4" y2="20"></line>
</svg>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="left">
<div class="icon-btn">
<!-- Hamburger -->
<svg viewBox="0 0 24 24">
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</div>
</div>
<div class="brand">ESTÉE LAUDER</div>
<div class="right">
<div>SIGN IN</div>
<div class="cart">
<svg viewBox="0 0 24 24">
<path d="M6 6h15l-2 10H8L6 6z"></path>
<circle cx="9" cy="19" r="1.5"></circle>
<circle cx="17" cy="19" r="1.5"></circle>
</svg>
</div>
</div>
</div>
<!-- Content area with loader -->
<div class="content">
<div class="spinner"></div>
</div>
<!-- Footer & Help Section -->
<div class="footer">
<h2>Need Help?</h2>
<ul class="list">
<li>Track My Order</li>
<li>Shipping Info</li>
<li>Returns & Exchanges</li>
<li>FAQs</li>
<li>Account Sign-Up / Login</li>
<li>1.877.311.3883</li>
</ul>
<div class="about">
<h2>About Estée Lauder</h2>
<ul class="list">
<li>Estée Lauder, Our Founder</li>
<li>Commitments</li>
<li>Corporate Info</li>
<li>Ingredient Glossary</li>
</ul>
</div>
</div>
<!-- Bottom action bar -->
<div class="bottom-actions">
<div class="action-btn">JOIN LOYALTY</div>
<div class="divider"></div>
<div class="action-btn">OFFERS</div>
</div>
</div>
</body>
</html> |