| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Files - Dark UI Mock</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #1f1a17; |
| color: #E8E0D7; |
| font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; |
| border-radius: 36px; |
| box-shadow: 0 20px 60px rgba(0,0,0,0.35); |
| } |
| |
| .statusbar { |
| height: 92px; |
| padding: 24px 36px 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #E8E0D7; |
| font-size: 42px; |
| letter-spacing: 0.5px; |
| } |
| .status-icons { display: flex; gap: 24px; align-items: center; } |
| .icon { width: 40px; height: 40px; display: inline-block; } |
| .icon svg { width: 100%; height: 100%; } |
| |
| .search-row { |
| margin: 18px 36px 0 36px; |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| } |
| .search { |
| flex: 1; |
| height: 112px; |
| background: #2A2420; |
| border: 1px solid #4A3F37; |
| border-radius: 28px; |
| display: flex; |
| align-items: center; |
| padding: 0 24px; |
| box-sizing: border-box; |
| } |
| .search .placeholder { |
| flex: 1; |
| color: #B9ADA3; |
| font-size: 40px; |
| } |
| .chips { |
| margin: 28px 36px 0 36px; |
| display: flex; |
| gap: 22px; |
| } |
| .chip { |
| height: 98px; |
| padding: 0 28px; |
| border-radius: 24px; |
| border: 2px solid #3B3430; |
| display: flex; |
| align-items: center; |
| gap: 18px; |
| color: #E8E0D7; |
| font-size: 36px; |
| box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02); |
| } |
| .chip .mini { |
| width: 52px; |
| height: 52px; |
| border-radius: 12px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| border: 2px solid currentColor; |
| } |
| .chip.images { color: #F3A58A; border-color: #544039; } |
| .chip.audio { color: #B58CFF; border-color: #4C4355; } |
| .chip.videos { color: #85D397; border-color: #3D4A42; } |
| .chip.docs { color: #67D1E7; border-color: #3A4749; } |
| |
| .section-title { |
| margin: 40px 36px 18px 36px; |
| color: #C9BEB2; |
| font-size: 34px; |
| letter-spacing: 2px; |
| text-transform: uppercase; |
| } |
| .apps-row { |
| margin: 0 36px; |
| display: flex; |
| gap: 80px; |
| align-items: flex-start; |
| } |
| .app-item { |
| width: 180px; |
| text-align: center; |
| } |
| .app-icon { |
| width: 120px; height: 120px; |
| border-radius: 60px; |
| background: #2E2723; |
| border: 1px solid #4A3F37; |
| margin: 0 auto 16px; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .app-label { font-size: 34px; color: #E8E0D7; } |
| |
| .files-header { |
| margin: 36px 36px 16px 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .files-header .title { font-size: 42px; color: #E8E0D7; } |
| .grid-toggle { |
| width: 56px; height: 56px; |
| border-radius: 12px; |
| background: #2A2420; |
| border: 1px solid #4A3F37; |
| display: flex; align-items: center; justify-content: center; |
| } |
| |
| .file-list { margin: 0 0 0 0; } |
| .file-row { |
| padding: 22px 36px; |
| display: grid; |
| grid-template-columns: 80px 1fr 120px; |
| align-items: center; |
| column-gap: 28px; |
| } |
| .file-icon, .thumb { |
| width: 80px; height: 80px; |
| border-radius: 16px; |
| background: #2C2622; |
| border: 1px solid #4A3F37; |
| display: flex; align-items: center; justify-content: center; |
| color: #A5DCE8; |
| } |
| .file-meta { display: flex; flex-direction: column; gap: 8px; } |
| .file-name { font-size: 40px; color: #E8E0D7; } |
| .file-info { font-size: 32px; color: #B9ADA3; } |
| .file-actions { |
| justify-self: end; |
| display: flex; |
| flex-direction: column; |
| gap: 14px; |
| } |
| .action-btn { |
| width: 60px; height: 60px; |
| border-radius: 16px; |
| background: #2A2420; |
| border: 1px solid #4A3F37; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .divider { |
| margin: 12px 36px; |
| height: 2px; |
| background: #3D352F; |
| } |
| |
| |
| .image-placeholder { |
| width: 80px; height: 80px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 16px; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; font-size: 22px; text-align: center; padding: 6px; |
| box-sizing: border-box; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| <div class="statusbar"> |
| <div>9:14</div> |
| <div class="status-icons"> |
| |
| <span class="icon"> |
| <svg viewBox="0 0 24 24" fill="#E8E0D7"> |
| <path d="M12 18.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm-6.5-7.2a12 12 0 0 1 13 0l-2 2.1a8.5 8.5 0 0 0-9 0l-2-2.1zm3.7 3.7a7 7 0 0 1 8.6 0l-2 2a4.5 4.5 0 0 0-4.6 0l-2-2z"/> |
| </svg> |
| </span> |
| |
| <span class="icon"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#E8E0D7" stroke-width="2"> |
| <rect x="3" y="6" width="16" height="12" rx="2" /> |
| <rect x="19" y="10" width="2" height="4" fill="#E8E0D7"/> |
| <rect x="5" y="8" width="10" height="8" fill="#E8E0D7"/> |
| </svg> |
| </span> |
| </div> |
| </div> |
|
|
| <div class="search-row"> |
| <div class="icon" style="width:64px;height:64px;"> |
| |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" stroke-width="2"> |
| <path d="M3 6h18M3 12h18M3 18h12"/> |
| </svg> |
| </div> |
| <div class="search"> |
| <div class="placeholder">Search this phone</div> |
| |
| <div class="icon" style="width:52px;height:52px;"> |
| <svg viewBox="0 0 24 24" fill="#E8E0D7"> |
| <circle cx="12" cy="5" r="2.2"/><circle cx="12" cy="12" r="2.2"/><circle cx="12" cy="19" r="2.2"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="chips"> |
| <div class="chip images"> |
| <div class="mini"> |
| <svg viewBox="0 0 24 24" stroke="currentColor" fill="none" stroke-width="2"> |
| <rect x="4" y="6" width="16" height="12" rx="2"/> |
| <path d="M6 16l4-4 3 3 3-2 2 3"/> |
| </svg> |
| </div> |
| <div>Images</div> |
| </div> |
| <div class="chip audio"> |
| <div class="mini"> |
| <svg viewBox="0 0 24 24" stroke="currentColor" fill="none" stroke-width="2"> |
| <path d="M8 6v9a3 3 0 1 0 2 3V9h6v6a3 3 0 1 0 2 3V6H8z"/> |
| </svg> |
| </div> |
| <div>Audio</div> |
| </div> |
| <div class="chip videos"> |
| <div class="mini"> |
| <svg viewBox="0 0 24 24" stroke="currentColor" fill="none" stroke-width="2"> |
| <rect x="4" y="5" width="16" height="14" rx="2"/> |
| <path d="M10 9l6 3-6 3V9z"/> |
| </svg> |
| </div> |
| <div>Videos</div> |
| </div> |
| <div class="chip docs"> |
| <div class="mini"> |
| <svg viewBox="0 0 24 24" stroke="currentColor" fill="none" stroke-width="2"> |
| <path d="M6 4h9l3 3v13H6z"/> |
| <path d="M15 4v4h4"/> |
| </svg> |
| </div> |
| <div>Documents</div> |
| </div> |
| </div> |
|
|
| <div class="section-title">BROWSE FILES IN OTHER APPS</div> |
| <div class="apps-row"> |
| <div class="app-item"> |
| <div class="app-icon"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#E8E0D7" stroke-width="2"> |
| <rect x="4" y="6" width="16" height="12" rx="2"/> |
| <circle cx="9" cy="10" r="2" fill="#E8E0D7"/> |
| <path d="M6 16l4-3 3 2 3-1 2 2"/> |
| </svg> |
| </div> |
| <div class="app-label">Gallery</div> |
| </div> |
| <div class="app-item"> |
| <div class="app-icon"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#E8E0D7" stroke-width="2"> |
| <path d="M7 6v10a3 3 0 1 0 2 3V9h8v7a3 3 0 1 0 2 3V6H7z"/> |
| </svg> |
| </div> |
| <div class="app-label">Photos</div> |
| </div> |
| <div class="app-item"> |
| <div class="app-icon"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#E8E0D7" stroke-width="2"> |
| <rect x="5" y="5" width="14" height="14" rx="3"/> |
| <path d="M8 8h8v8H8z"/> |
| </svg> |
| </div> |
| <div class="app-label">Bug reports</div> |
| </div> |
| <div class="app-item"> |
| <div class="app-icon"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#E8E0D7" stroke-width="2"> |
| <path d="M12 3l3 4h4l-3 4 3 4h-4l-3 4-3-4H5l3-4-3-4h4z"/> |
| </svg> |
| </div> |
| <div class="app-label">System traces</div> |
| </div> |
| </div> |
|
|
| <div class="files-header"> |
| <div class="title">Recent files</div> |
| <div class="grid-toggle"> |
| <svg viewBox="0 0 24 24" fill="#E8E0D7"> |
| <rect x="3" y="3" width="7" height="7" rx="1"/> |
| <rect x="14" y="3" width="7" height="7" rx="1"/> |
| <rect x="3" y="14" width="7" height="7" rx="1"/> |
| <rect x="14" y="14" width="7" height="7" rx="1"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-list"> |
|
|
| |
| <div class="file-row"> |
| <div class="file-icon"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#67D1E7" stroke-width="2"> |
| <path d="M6 4h9l3 3v13H6z"/> |
| <path d="M15 4v4h4"/> |
| </svg> |
| </div> |
| <div class="file-meta"> |
| <div class="file-name">screenshot.txt</div> |
| <div class="file-info">Nov 10, 140 kB, TXT document</div> |
| </div> |
| <div class="file-actions"> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="divider"></div> |
|
|
| |
| <div class="file-row"> |
| <div class="file-icon"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#67D1E7" stroke-width="2"> |
| <path d="M6 4h9l3 3v13H6z"/> |
| <path d="M15 4v4h4"/> |
| </svg> |
| </div> |
| <div class="file-meta"> |
| <div class="file-name">actuation_result.txt</div> |
| <div class="file-info">Nov 10, 8 B, TXT document</div> |
| </div> |
| <div class="file-actions"> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="divider"></div> |
|
|
| |
| <div class="file-row"> |
| <div class="file-icon"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#67D1E7" stroke-width="2"> |
| <path d="M6 4h9l3 3v13H6z"/> |
| <path d="M15 4v4h4"/> |
| </svg> |
| </div> |
| <div class="file-meta"> |
| <div class="file-name">os_info.txt</div> |
| <div class="file-info">Nov 10, 32 B, TXT document</div> |
| </div> |
| <div class="file-actions"> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="divider"></div> |
|
|
| |
| <div class="file-row"> |
| <div class="file-icon"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#67D1E7" stroke-width="2"> |
| <path d="M6 4h9l3 3v13H6z"/> |
| <path d="M15 4v4h4"/> |
| </svg> |
| </div> |
| <div class="file-meta"> |
| <div class="file-name">agents.txt</div> |
| <div class="file-info">Nov 10, 1.15 kB, TXT document</div> |
| </div> |
| <div class="file-actions"> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="divider"></div> |
| <div class="file-row"> |
| <div class="image-placeholder">[IMG: App screenshot]</div> |
| <div class="file-meta"> |
| <div class="file-name">fitbitshare_2123586381.PNG</div> |
| <div class="file-info">Oct 30, 93.48 kB, PNG image</div> |
| </div> |
| <div class="file-actions"> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="divider"></div> |
| <div class="file-row"> |
| <div class="image-placeholder">[IMG: App screenshot]</div> |
| <div class="file-meta"> |
| <div class="file-name">fitbitshare_2123101703.PNG</div> |
| <div class="file-info">Oct 30, 92.77 kB, PNG image</div> |
| </div> |
| <div class="file-actions"> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="divider"></div> |
| <div class="file-row"> |
| <div class="image-placeholder">[IMG: App screenshot]</div> |
| <div class="file-meta"> |
| <div class="file-name">fitbitshare_2123014230.PNG</div> |
| <div class="file-info">Oct 30, 92.77 kB, PNG image</div> |
| </div> |
| <div class="file-actions"> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="divider"></div> |
| <div class="file-row"> |
| <div class="image-placeholder">[IMG: App screenshot]</div> |
| <div class="file-meta"> |
| <div class="file-name">fitbitshare_2122912072.PNG</div> |
| <div class="file-info">Oct 30, 93.30 kB, PNG image</div> |
| </div> |
| <div class="file-actions"> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg viewBox="0 0 24 24" stroke="#E8E0D7" fill="none" stroke-width="2"> |
| <path d="M7 7l4-4M17 7l4-4M7 17l-4 4M17 17l4 4"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| </div> |
| </body> |
| </html> |