File size: 7,966 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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Kitchen Stories Email UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #231a14; /* deep brown */
color: #e8dfd6;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
/* Status bar */
.status-bar {
height: 120px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #efe6dc;
font-weight: 600;
font-size: 40px;
letter-spacing: 0.5px;
opacity: 0.95;
}
.status-icons {
display: flex;
align-items: center;
gap: 26px;
}
.icon {
width: 48px; height: 48px;
fill: none; stroke: #efe6dc; stroke-width: 3;
}
/* Gmail header actions */
.mail-header {
padding: 26px 36px 24px 36px;
display: flex;
align-items: center;
gap: 24px;
color: #e8dfd6;
}
.header-left {
display: flex; align-items: center; gap: 18px;
}
.header-actions {
margin-left: auto;
display: flex; align-items: center; gap: 34px;
}
.header-icon {
width: 56px; height: 56px;
stroke: #e8dfd6; stroke-width: 3; fill: none;
opacity: 0.9;
}
/* Title row */
.title-row {
padding: 8px 36px 0 96px;
display: flex; align-items: center;
gap: 20px;
}
.title-row h1 {
margin: 0;
font-size: 70px;
font-weight: 700;
color: #efe6dc;
letter-spacing: 0.2px;
}
.pill {
background: #454a54;
color: #d6dbe6;
font-size: 36px;
padding: 8px 18px;
border-radius: 16px;
}
.star {
margin-left: auto;
width: 54px; height: 54px;
stroke: #e8dfd6; fill: none; stroke-width: 3;
opacity: 0.9;
}
/* Sender row */
.sender-row {
padding: 38px 36px 18px 36px;
display: flex; align-items: center;
gap: 26px;
}
.avatar {
width: 110px; height: 110px; border-radius: 50%;
background: #8c8f95;
display: flex; align-items: center; justify-content: center;
color: #231a14; font-weight: 700;
}
.sender-info {
flex: 1;
}
.sender-top {
display: flex; align-items: baseline; gap: 18px;
}
.sender-name {
font-size: 44px; font-weight: 700; color: #efe6dc;
}
.sender-time {
font-size: 36px; color: #c7bdb2;
}
.sender-meta {
font-size: 34px; color: #c7bdb2; margin-top: 6px;
}
.reply-area {
display: flex; align-items: center; gap: 26px;
}
.reply-icon { width: 52px; height: 52px; stroke: #e8dfd6; fill: none; stroke-width: 3; }
/* Email content card */
.content-card {
margin: 40px 36px 0 36px;
background: #2c211a;
border-radius: 12px;
padding: 80px 60px 120px 60px;
box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.brand {
text-align: center;
font-size: 64px;
color: #121212;
opacity: 0.9;
letter-spacing: 1px;
margin-bottom: 40px;
}
.img-placeholder {
width: 820px; height: 360px;
margin: 0 auto 60px auto;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 32px;
border-radius: 8px;
}
.hero-title {
text-align: center;
font-size: 72px;
font-weight: 800;
color: #e9e6e2;
line-height: 1.15;
margin: 0 40px 30px 40px;
}
.hero-sub {
text-align: center;
font-size: 40px;
color: #d5ccc2;
line-height: 1.6;
margin: 0 60px;
}
/* Bottom controls hint */
.bottom-bar {
position: absolute; bottom: 42px; left: 0; right: 0;
display: flex; justify-content: center; align-items: center;
}
.home-handle {
width: 320px; height: 14px; border-radius: 7px; background: #e9e6e2; opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>8:38</div>
<div class="status-icons">
<!-- Cast/Media -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M3 5h18v14H3z"></path>
<path d="M3 17c2 0 4 2 4 4"></path>
</svg>
<!-- Do Not Disturb (moon) -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 3a9 9 0 0 0 0 18c-3-1-6-4-6-9s3-8 6-9z"></path>
</svg>
<!-- Cloud -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M6 15h11a4 4 0 0 0 0-8 6 6 0 0 0-11 2"></path>
</svg>
<!-- WiFi -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M2 9c9-6 11-6 20 0"></path>
<path d="M5 12c6-4 8-4 14 0"></path>
<path d="M8 15c3-2 5-2 8 0"></path>
<circle cx="12" cy="18" r="1.5" fill="#efe6dc" stroke="none"></circle>
</svg>
<!-- Battery -->
<svg class="icon" viewBox="0 0 24 24">
<rect x="2" y="6" width="18" height="12" rx="2"></rect>
<rect x="20" y="10" width="2" height="4"></rect>
<rect x="4" y="8" width="12" height="8" fill="#efe6dc" stroke="none"></rect>
</svg>
</div>
</div>
<!-- Mail header row -->
<div class="mail-header">
<div class="header-left">
<svg class="header-icon" viewBox="0 0 24 24">
<path d="M14 6l-6 6 6 6"></path>
</svg>
</div>
<div class="header-actions">
<!-- Download -->
<svg class="header-icon" viewBox="0 0 24 24">
<path d="M12 4v9"></path>
<path d="M8 9l4 4 4-4"></path>
<path d="M4 20h16"></path>
</svg>
<!-- Trash -->
<svg class="header-icon" viewBox="0 0 24 24">
<path d="M4 7h16"></path>
<path d="M7 7l1 12h8l1-12"></path>
<path d="M9 7V5h6v2"></path>
</svg>
<!-- Envelope -->
<svg class="header-icon" viewBox="0 0 24 24">
<rect x="3" y="5" width="18" height="14" rx="2"></rect>
<path d="M3 7l9 6 9-6"></path>
</svg>
<!-- More (vertical) -->
<svg class="header-icon" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="1.6"></circle>
<circle cx="12" cy="12" r="1.6"></circle>
<circle cx="12" cy="19" r="1.6"></circle>
</svg>
</div>
</div>
<!-- Title row -->
<div class="title-row">
<h1>Welcome to Kitchen Stories!</h1>
<div class="pill">Inbox</div>
<svg class="star" viewBox="0 0 24 24">
<path d="M12 3l3 6 6 1-4.5 4 1 7-5.5-3-5.5 3 1-7L3 10l6-1z"></path>
</svg>
</div>
<!-- Sender row -->
<div class="sender-row">
<div class="avatar">
<svg width="64" height="64" viewBox="0 0 24 24">
<circle cx="12" cy="8" r="4" fill="#dcdfe3"></circle>
<path d="M4 20c1-4 5-6 8-6s7 2 8 6" fill="#dcdfe3"></path>
</svg>
</div>
<div class="sender-info">
<div class="sender-top">
<div class="sender-name">Kitchen Stories</div>
<div class="sender-time">2 days ago</div>
</div>
<div class="sender-meta">to me ▾</div>
</div>
<div class="reply-area">
<svg class="reply-icon" viewBox="0 0 24 24">
<path d="M10 8l-6 4 6 4v-3h6a4 4 0 0 0 4-4"></path>
</svg>
<svg class="reply-icon" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="1.5"></circle>
<circle cx="12" cy="5" r="1.5"></circle>
<circle cx="12" cy="19" r="1.5"></circle>
</svg>
</div>
</div>
<!-- Email content -->
<div class="content-card">
<div class="brand">kitchen stories</div>
<div class="img-placeholder">[IMG: Illustration - Bowl on smartphone with leaves]</div>
<div class="hero-title">
Thank you for<br>
joining the<br>
Kitchen Stories<br>
family!
</div>
<div class="hero-sub">
You have successfully created an account<br>
at Kitchen Stories.
</div>
</div>
<!-- Bottom gesture handle -->
<div class="bottom-bar">
<div class="home-handle"></div>
</div>
</div>
</body>
</html> |