| <!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 { |
| 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; |
| } |
| |
| |
| .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-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 { |
| 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; |
| } |
| |
| |
| .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"> |
|
|
| |
| <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"> |
| |
| <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> |
| |
| <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> |
| |
| <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> |
|
|
| |
| <div class="tabs"> |
| <div class="tab active">Suggested</div> |
| <div class="tab">Notifications</div> |
| </div> |
|
|
| |
| <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> |
|
|
| |
| <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> |
|
|
| |
| <div class="home-bar"></div> |
| </div> |
| </body> |
| </html> |