File size: 9,846 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 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1440, initial-scale=1.0">
<title>UI Render</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
position: relative;
overflow: hidden;
width: 1440px;
height: 3120px;
background: #0E0F0E;
font-family: "Roboto", Arial, sans-serif;
color: #EAEAEA;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
height: 120px;
width: 100%;
padding: 0 40px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
color: #FFFFFF;
}
.status-left {
display: flex;
align-items: center;
gap: 24px;
font-size: 52px;
letter-spacing: 1px;
}
.status-right {
display: flex;
align-items: center;
gap: 28px;
}
.dot {
width: 16px;
height: 16px;
background: #FFFFFF;
border-radius: 50%;
opacity: 0.9;
}
.icon-wifi svg, .icon-battery svg, .icon-notif svg {
display: block;
}
/* Top tabs */
.tabs {
position: absolute;
top: 140px;
left: 0;
width: 100%;
padding: 0 48px;
box-sizing: border-box;
display: flex;
align-items: center;
gap: 64px;
color: #A8B3A2;
font-size: 54px;
}
.tab {
position: relative;
padding: 24px 8px 28px;
}
.tab.active {
color: #97C380;
font-weight: 600;
}
.tab.active::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 180px;
height: 10px;
border-radius: 8px;
background: #97C380;
}
/* File card preview behind the sheet */
.file-list {
position: absolute;
top: 260px;
left: 0;
width: 100%;
padding: 0 48px;
box-sizing: border-box;
}
.file-card {
background: #1B1D1B;
border-radius: 28px;
height: 240px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
color: #D9D9D9;
box-shadow: 0 8px 24px rgba(0,0,0,0.4) inset;
}
.file-info {
display: flex;
align-items: center;
gap: 28px;
font-size: 58px;
}
.doc-icon {
width: 96px;
height: 120px;
border-radius: 12px;
background: #4C78FF;
position: relative;
}
.doc-icon::after {
content: "";
position: absolute;
right: 0;
top: 0;
width: 30px;
height: 30px;
background: #A9B9FF;
clip-path: polygon(0 0, 100% 0, 100% 100%);
border-top-right-radius: 12px;
}
.kebab {
display: flex;
flex-direction: column;
gap: 14px;
margin-right: 12px;
}
.kebab span {
width: 14px;
height: 14px;
background: #8C8C8C;
border-radius: 50%;
}
/* Bottom sheet */
.bottom-sheet {
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 2000px;
background: #273327;
border-top-left-radius: 64px;
border-top-right-radius: 64px;
box-shadow: 0 -12px 40px rgba(0,0,0,0.6);
padding: 48px 60px 160px;
box-sizing: border-box;
}
.sheet-header {
display: flex;
align-items: center;
gap: 32px;
margin-bottom: 24px;
}
.sheet-header .page-icon {
width: 72px;
height: 72px;
}
.sheet-title {
font-size: 64px;
color: #EDEFEA;
}
.divider {
height: 2px;
background: rgba(255,255,255,0.08);
margin: 24px 0 8px;
}
.action {
display: flex;
align-items: center;
gap: 36px;
padding: 38px 0;
color: #DDE2D7;
}
.action .label {
font-size: 58px;
line-height: 1.2;
letter-spacing: 0.2px;
}
.action .icon {
width: 68px;
height: 68px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.action .icon svg {
width: 64px;
height: 64px;
fill: none;
stroke: #C9D2C2;
stroke-width: 5;
stroke-linecap: round;
stroke-linejoin: round;
}
/* Bottom home bar indicator */
.home-bar {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
width: 300px;
height: 18px;
background: #FFFFFF;
opacity: 0.9;
border-radius: 12px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">
<span>5:35</span>
<div class="dot"></div>
<div class="dot" style="opacity:0.6;"></div>
</div>
<div class="status-right">
<!-- Simple notification bell -->
<div class="icon-notif">
<svg width="48" height="48" viewBox="0 0 48 48">
<path d="M24 42c3 0 5-2 5-4H19c0 2 2 4 5 4Z"></path>
<path d="M10 34h28c-2-3-3-8-3-13a11 11 0 0 0-22 0c0 5-1 10-3 13Z"></path>
</svg>
</div>
<!-- WiFi -->
<div class="icon-wifi">
<svg width="48" height="48" viewBox="0 0 48 48">
<path d="M8 18c8-8 24-8 32 0"></path>
<path d="M13 24c6-6 16-6 22 0"></path>
<path d="M18 30c4-4 8-4 12 0"></path>
<circle cx="24" cy="36" r="2" fill="#FFFFFF"></circle>
</svg>
</div>
<!-- Battery -->
<div class="icon-battery">
<svg width="64" height="48" viewBox="0 0 64 48">
<rect x="6" y="10" width="48" height="28" rx="5" stroke="#FFFFFF" fill="none" stroke-width="4"></rect>
<rect x="10" y="14" width="36" height="20" rx="3" fill="#FFFFFF"></rect>
<rect x="54" y="18" width="6" height="12" rx="2" fill="#FFFFFF"></rect>
</svg>
</div>
</div>
</div>
<!-- Tabs -->
<div class="tabs">
<div class="tab active">Suggested</div>
<div class="tab">Notifications</div>
</div>
<!-- File preview row -->
<div class="file-list">
<div class="file-card">
<div class="file-info">
<div class="doc-icon"></div>
<div style="font-weight:500;">agents.txt</div>
</div>
<div class="kebab">
<span></span><span></span><span></span>
</div>
</div>
</div>
<!-- Bottom sheet -->
<div class="bottom-sheet">
<div class="sheet-header">
<svg class="page-icon" viewBox="0 0 64 64">
<rect x="10" y="8" width="40" height="48" rx="8" fill="#4C78FF"></rect>
<path d="M50 8v16c0 4-4 8-8 8H26" fill="#A9B9FF"></path>
</svg>
<div class="sheet-title">Shopping list</div>
</div>
<div class="divider"></div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<path d="M20 26a10 10 0 1 0 0-20 10 10 0 0 0 0 20Z"></path>
<path d="M20 36c-8 0-14 6-14 14"></path>
<path d="M44 34v-8"></path>
<path d="M40 30h8"></path>
</svg>
</div>
<div class="label">Share</div>
</div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<circle cx="22" cy="24" r="10"></circle>
<circle cx="46" cy="24" r="8"></circle>
<path d="M6 46c2-8 10-14 16-14s14 6 16 14"></path>
<path d="M34 44c3-6 8-10 12-10 6 0 10 4 12 10"></path>
</svg>
</div>
<div class="label">Manage access</div>
</div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<path d="M32 8l8 16 18 2-13 12 4 18-17-9-17 9 4-18-13-12 18-2 8-16Z"></path>
</svg>
</div>
<div class="label">Add to Starred</div>
</div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<circle cx="32" cy="32" r="22"></circle>
<path d="M20 34l8 8 16-18"></path>
</svg>
</div>
<div class="label">Make available offline</div>
</div>
<div class="divider" style="margin-top:8px;"></div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<path d="M14 28c6-6 30-6 36 0"></path>
<path d="M18 34c4-4 24-4 28 0"></path>
</svg>
</div>
<div class="label">Copy link</div>
</div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<rect x="10" y="10" width="28" height="36" rx="6"></rect>
<rect x="26" y="18" width="28" height="36" rx="6"></rect>
</svg>
</div>
<div class="label">Make a copy</div>
</div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<path d="M50 32 30 18v28l20-14Z"></path>
<path d="M14 20v24"></path>
</svg>
</div>
<div class="label">Send a copy</div>
</div>
<div class="divider"></div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<path d="M20 12h24v8H20z"></path>
<path d="M14 24h36v28H14z"></path>
<path d="M26 34h12"></path>
</svg>
</div>
<div class="label">Open with</div>
</div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<path d="M32 10v28"></path>
<path d="M22 26l10 12 10-12"></path>
<rect x="14" y="40" width="36" height="12" rx="3"></rect>
</svg>
</div>
<div class="label">Download</div>
</div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<path d="M14 50l16-6"></path>
<path d="M30 44l20-20"></path>
<path d="M40 12l12 12"></path>
</svg>
</div>
<div class="label">Rename</div>
</div>
<div class="action">
<div class="icon">
<svg viewBox="0 0 64 64">
<path d="M14 20h24l10 10v18H14z"></path>
<path d="M38 20v10h10"></path>
</svg>
</div>
<div class="label">Show file location</div>
</div>
</div>
<!-- Home bar indicator -->
<div class="home-bar"></div>
</div>
</body>
</html> |