| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Files List UI</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; height: 2400px; |
| position: relative; overflow: hidden; |
| background: #1f1713; |
| color: #e9dfd0; |
| } |
| |
| |
| .status-bar { |
| height: 110px; |
| padding: 20px 32px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #efe6d8; |
| font-size: 42px; |
| letter-spacing: 0.5px; |
| } |
| .status-icons { display: flex; align-items: center; gap: 28px; } |
| .status-icons svg { width: 52px; height: 52px; fill: none; stroke: #efe6d8; stroke-width: 6; } |
| |
| |
| .app-bar { |
| height: 140px; |
| padding: 0 26px; |
| display: flex; align-items: center; gap: 24px; |
| } |
| .icon-btn { width: 78px; height: 78px; display: flex; align-items: center; justify-content: center; border-radius: 20px; } |
| .icon-btn svg { width: 54px; height: 54px; fill: none; stroke: #e9dfd0; stroke-width: 8; } |
| .search { |
| flex: 1; |
| height: 90px; |
| border-radius: 22px; |
| background: #322822; |
| color: #cabfb0; |
| font-size: 40px; |
| padding: 0 28px; |
| display: flex; align-items: center; |
| box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); |
| } |
| .kebab svg { width: 42px; height: 42px; stroke: none; fill: #e9dfd0; } |
| |
| .separator { height: 2px; background: #423831; margin-top: 18px; } |
| |
| |
| .list { padding-bottom: 160px; } |
| .file-row { |
| display: flex; align-items: center; |
| gap: 30px; |
| padding: 32px 28px; |
| border-top: 1px solid #3b312b; |
| } |
| .thumb, .doc-icon { |
| width: 96px; height: 96px; border-radius: 18px; |
| flex-shrink: 0; |
| } |
| |
| .img-ph { |
| width: 96px; height: 96px; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| border-radius: 18px; |
| display: flex; justify-content: center; align-items: center; |
| color: #757575; font-size: 22px; text-align: center; padding: 8px; |
| } |
| .doc-icon { |
| background: #143a39; |
| border: 2px solid #28d3cf; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .doc-icon svg { width: 58px; height: 58px; stroke: #28d3cf; stroke-width: 6; fill: none; } |
| |
| .pdf-pill { |
| width: 72px; height: 72px; border-radius: 12px; |
| background: #d86a6a; color: #fff; |
| display: flex; align-items: center; justify-content: center; |
| font-weight: 700; font-size: 26px; |
| } |
| |
| .file-info { flex: 1; min-width: 0; } |
| .title { |
| font-size: 42px; line-height: 52px; color: #f1e8da; |
| white-space: nowrap; overflow: hidden; text-overflow: ellipsis; |
| } |
| .meta { |
| margin-top: 8px; font-size: 28px; color: #c9bdaf; |
| } |
| |
| .actions { |
| width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; |
| } |
| .actions svg { width: 54px; height: 54px; stroke: #e9dfd0; stroke-width: 8; fill: none; } |
| |
| |
| .gesture { |
| position: absolute; bottom: 36px; left: 50%; |
| transform: translateX(-50%); |
| width: 360px; height: 14px; border-radius: 9px; background: #dcdcdc; |
| opacity: 0.85; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>9:14</div> |
| <div class="status-icons"> |
| |
| <svg viewBox="0 0 32 32"> |
| <path d="M2 24 L16 10 L30 24" /> |
| <circle cx="16" cy="22" r="3" /> |
| </svg> |
| <svg viewBox="0 0 42 28"> |
| <rect x="2" y="4" width="32" height="20" rx="4"></rect> |
| <rect x="36" y="10" width="4" height="8" rx="2"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 10 H42 M6 24 H42 M6 38 H42" /> |
| </svg> |
| </div> |
| <div class="search">Search this phone</div> |
| <div class="icon-btn kebab"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="4" r="3"></circle> |
| <circle cx="12" cy="12" r="3"></circle> |
| <circle cx="12" cy="20" r="3"></circle> |
| </svg> |
| </div> |
| </div> |
| <div class="separator"></div> |
|
|
| |
| <div class="list"> |
| <div class="file-row"> |
| <div class="doc-icon"> |
| <svg viewBox="0 0 48 48"> |
| <rect x="10" y="8" width="28" height="32" rx="4"></rect> |
| <path d="M28 8 L38 18"></path> |
| </svg> |
| </div> |
| <div class="file-info"> |
| <div class="title">agents.txt</div> |
| <div class="meta">Nov 10, 1.15 kB, TXT document</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-row"> |
| <div class="img-ph">[IMG: Fitbit screenshot]</div> |
| <div class="file-info"> |
| <div class="title">fitbitshare_2123586381.PNG</div> |
| <div class="meta">Oct 30, 93.48 kB, PNG image</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-row"> |
| <div class="img-ph">[IMG: Fitbit screenshot]</div> |
| <div class="file-info"> |
| <div class="title">fitbitshare_2123101703.PNG</div> |
| <div class="meta">Oct 30, 92.77 kB, PNG image</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-row"> |
| <div class="img-ph">[IMG: Fitbit screenshot]</div> |
| <div class="file-info"> |
| <div class="title">fitbitshare_2123014230.PNG</div> |
| <div class="meta">Oct 30, 92.77 kB, PNG image</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-row"> |
| <div class="img-ph">[IMG: Fitbit screenshot]</div> |
| <div class="file-info"> |
| <div class="title">fitbitshare_2122912072.PNG</div> |
| <div class="meta">Oct 30, 93.30 kB, PNG image</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-row"> |
| <div class="pdf-pill">PDF</div> |
| <div class="file-info"> |
| <div class="title">Amsterdam-1.pdf</div> |
| <div class="meta">Oct 6, 8.45 MB, PDF document</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-row"> |
| <div class="pdf-pill">PDF</div> |
| <div class="file-info"> |
| <div class="title">Venice tour.pdf</div> |
| <div class="meta">Oct 6, 5.99 MB, PDF document</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-row"> |
| <div class="pdf-pill">PDF</div> |
| <div class="file-info"> |
| <div class="title">Amsterdam (1).pdf</div> |
| <div class="meta">Oct 6, 8.45 MB, PDF document</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-row"> |
| <div class="img-ph">[IMG: Concert crowd]</div> |
| <div class="file-info"> |
| <div class="title">tomorrow land image.png</div> |
| <div class="meta">Oct 6, 1.30 MB, PNG image</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-row"> |
| <div class="img-ph">[IMG: City view]</div> |
| <div class="file-info"> |
| <div class="title">vanice file.jpg</div> |
| <div class="meta">Oct 6, 125 kB, JPG image</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-row"> |
| <div class="pdf-pill">PDF</div> |
| <div class="file-info"> |
| <div class="title">Tomorrowland.pdf</div> |
| <div class="meta">Oct 6, 2.41 MB, PDF document</div> |
| </div> |
| <div class="actions"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M6 18 L6 6 L18 6"></path> |
| <path d="M42 30 L42 42 L30 42"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="gesture"></div> |
| </div> |
| </body> |
| </html> |