| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>UI Render</title> |
| <meta name="viewport" content="width=1440, initial-scale=1.0"> |
| <style> |
| body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width:1440px; height:3120px; |
| position:relative; overflow:hidden; |
| background:#121613; color:#ECECEC; |
| } |
| |
| |
| .status-bar { |
| position:absolute; top:0; left:0; right:0; |
| height:130px; padding:0 40px; |
| display:flex; align-items:center; justify-content:space-between; |
| color:#ffffff; font-size:52px; letter-spacing:0.5px; |
| } |
| .status-right { display:flex; align-items:center; gap:28px; } |
| .icon-battery svg, .icon-wifi svg, .icon-dnd svg { display:block; } |
| |
| |
| .top-tabs { |
| position:absolute; top:130px; left:0; right:0; |
| height:126px; padding:0 54px; |
| display:flex; align-items:flex-end; gap:48px; |
| border-bottom:1px solid #2A2F2B; |
| } |
| .tab { |
| font-size:56px; line-height:1; padding-bottom:22px; color:#9aa19a; |
| } |
| .tab.active { color:#9BD37D; position:relative; } |
| .tab.active::after { |
| content:""; position:absolute; left:0; bottom:0; |
| width:180px; height:6px; background:#9BD37D; border-radius:6px; |
| } |
| |
| |
| .content { |
| position:absolute; top:256px; left:64px; right:64px; |
| } |
| |
| .item { margin-bottom:140px; } |
| .item-head { display:flex; align-items:center; gap:28px; } |
| .file-icon { |
| width:54px; height:54px; border-radius:8px; background:#78A6FF; display:flex; align-items:center; justify-content:center; |
| } |
| .file-icon svg { width:36px; height:36px; } |
| .item-title { font-size:58px; color:#F0F0F0; flex:1; } |
| .menu-btn { width:80px; height:80px; display:flex; align-items:center; justify-content:center; } |
| .card { |
| margin-top:24px; |
| background:#1A1F1C; border-radius:28px; padding:40px; |
| height:540px; |
| display:flex; align-items:center; justify-content:center; |
| } |
| .img-ph { |
| width:100%; height:100%; |
| background:#E0E0E0; border:1px solid #BDBDBD; |
| color:#757575; display:flex; align-items:center; justify-content:center; |
| font-size:44px; border-radius:22px; |
| } |
| .meta { |
| display:flex; align-items:center; gap:24px; |
| margin-top:26px; |
| } |
| .avatar { |
| width:84px; height:84px; border-radius:50%; |
| background:#3D6D3E; color:#EAF4EA; display:flex; align-items:center; justify-content:center; |
| font-size:46px; font-weight:bold; |
| } |
| .meta-text { font-size:40px; color:#C9D0C9; } |
| |
| |
| .divider { |
| height:1px; background:#2A2F2B; margin:40px 0; |
| } |
| |
| |
| .toast { |
| position:absolute; left:28px; right:28px; bottom:630px; |
| background:#FFFFFF; color:#161A17; border:1px solid #D6D6D6; |
| border-radius:20px; box-shadow:0 6px 18px rgba(0,0,0,0.35); |
| padding:32px 36px; font-size:44px; |
| } |
| |
| |
| .bottom-nav { |
| position:absolute; left:0; right:0; bottom:0; |
| height:270px; background:#141914; |
| border-top:1px solid #2A2F2B; |
| padding-top:36px; |
| } |
| .nav-items { |
| display:flex; justify-content:space-around; align-items:center; |
| padding:0 40px; |
| } |
| .nav-item { color:#C7CECA; text-align:center; } |
| .nav-icon { width:100px; height:100px; margin:0 auto 18px; display:flex; align-items:center; justify-content:center; } |
| .nav-item.active .nav-icon { |
| background:#2F3A2E; border-radius:32px; |
| } |
| .nav-item.active .label { color:#9BD37D; } |
| .label { font-size:40px; } |
| |
| |
| .gesture { |
| position:absolute; bottom:26px; left:50%; transform:translateX(-50%); |
| width:260px; height:16px; border-radius:16px; background:#EAEAEA; |
| opacity:0.85; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left">5:36</div> |
| <div class="status-right"> |
| <div class="icon-dnd"> |
| <svg width="44" height="44" viewBox="0 0 44 44"> |
| <circle cx="22" cy="22" r="18" fill="none" stroke="#9AA19A" stroke-width="4"/> |
| <rect x="12" y="20" width="20" height="4" fill="#9AA19A"/> |
| </svg> |
| </div> |
| <div class="icon-wifi"> |
| <svg width="44" height="44" viewBox="0 0 44 44"> |
| <path d="M6 18c8-6 24-6 32 0" stroke="#9AA19A" stroke-width="4" fill="none" /> |
| <path d="M12 24c6-4 14-4 20 0" stroke="#9AA19A" stroke-width="4" fill="none" /> |
| <circle cx="22" cy="30" r="3" fill="#9AA19A"/> |
| </svg> |
| </div> |
| <div class="icon-battery"> |
| <svg width="60" height="44" viewBox="0 0 60 44"> |
| <rect x="4" y="10" width="46" height="24" rx="4" fill="none" stroke="#9AA19A" stroke-width="4"/> |
| <rect x="52" y="16" width="6" height="12" rx="2" fill="#9AA19A"/> |
| <rect x="8" y="14" width="34" height="16" fill="#9AA19A"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="top-tabs"> |
| <div class="tab active">Suggested</div> |
| <div class="tab">Notifications</div> |
| </div> |
|
|
| |
| <div class="content"> |
|
|
| |
| <div class="item"> |
| <div class="item-head"> |
| <div class="file-icon"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="3" y="3" width="18" height="18" rx="3" fill="#8DB2FF"/> |
| <rect x="7" y="7" width="10" height="3" fill="#2A3A57"/> |
| <rect x="7" y="12" width="10" height="3" fill="#2A3A57"/> |
| <rect x="7" y="17" width="6" height="3" fill="#2A3A57"/> |
| </svg> |
| </div> |
| <div class="item-title">agents.txt</div> |
| <div class="menu-btn"> |
| <svg width="28" height="60" viewBox="0 0 28 60"> |
| <circle cx="14" cy="12" r="5" fill="#A5ABA5"/> |
| <circle cx="14" cy="30" r="5" fill="#A5ABA5"/> |
| <circle cx="14" cy="48" r="5" fill="#A5ABA5"/> |
| </svg> |
| </div> |
| </div> |
| <div class="card"> |
| <div class="img-ph">[IMG: Text document preview]</div> |
| </div> |
| <div class="meta"> |
| <div class="avatar">C</div> |
| <div class="meta-text">You edited today</div> |
| </div> |
| </div> |
|
|
| <div class="divider"></div> |
|
|
| |
| <div class="item"> |
| <div class="item-head"> |
| <div class="file-icon"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="3" y="3" width="18" height="18" rx="3" fill="#8DB2FF"/> |
| <rect x="7" y="7" width="10" height="3" fill="#2A3A57"/> |
| <rect x="7" y="12" width="10" height="3" fill="#2A3A57"/> |
| <rect x="7" y="17" width="6" height="3" fill="#2A3A57"/> |
| </svg> |
| </div> |
| <div class="item-title">Shopping list</div> |
| <div class="menu-btn"> |
| <svg width="28" height="60" viewBox="0 0 28 60"> |
| <circle cx="14" cy="12" r="5" fill="#A5ABA5"/> |
| <circle cx="14" cy="30" r="5" fill="#A5ABA5"/> |
| <circle cx="14" cy="48" r="5" fill="#A5ABA5"/> |
| </svg> |
| </div> |
| </div> |
| <div class="card"> |
| <div class="img-ph">[IMG: Document icon]</div> |
| </div> |
| <div class="meta"> |
| <div class="avatar">C</div> |
| <div class="meta-text">You modified today</div> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="toast">1 item will be downloaded. See notification for details.</div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-items"> |
| <div class="nav-item active"> |
| <div class="nav-icon"> |
| <svg width="60" height="60" viewBox="0 0 60 60"> |
| <path d="M30 10 L52 28 V50 H38 V36 H22 V50 H8 V28 Z" fill="#9BD37D"/> |
| </svg> |
| </div> |
| <div class="label">Home</div> |
| </div> |
| <div class="nav-item"> |
| <div class="nav-icon"> |
| <svg width="60" height="60" viewBox="0 0 60 60"> |
| <path d="M30 8 L36 24 H54 L40 34 L46 52 L30 42 L14 52 L20 34 L6 24 H24 Z" fill="#C7CECA"/> |
| </svg> |
| </div> |
| <div class="label">Starred</div> |
| </div> |
| <div class="nav-item"> |
| <div class="nav-icon"> |
| <svg width="60" height="60" viewBox="0 0 60 60"> |
| <circle cx="18" cy="24" r="10" fill="#C7CECA"/> |
| <circle cx="42" cy="24" r="10" fill="#C7CECA"/> |
| <rect x="12" y="38" width="36" height="10" rx="5" fill="#C7CECA"/> |
| </svg> |
| </div> |
| <div class="label">Shared</div> |
| </div> |
| <div class="nav-item"> |
| <div class="nav-icon"> |
| <svg width="60" height="60" viewBox="0 0 60 60"> |
| <rect x="8" y="16" width="44" height="30" rx="6" fill="#C7CECA"/> |
| <rect x="16" y="10" width="28" height="8" rx="3" fill="#C7CECA"/> |
| </svg> |
| </div> |
| <div class="label">Files</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="gesture"></div> |
| </div> |
| </body> |
| </html> |