| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Files - Search</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: #1f1a17; color: #e9e1d5; |
| } |
| |
| |
| .status-bar { |
| height: 120px; |
| padding: 0 36px; |
| display: flex; align-items: center; justify-content: space-between; |
| color: #efe6d8; font-weight: 600; |
| } |
| .status-left { display: flex; align-items: center; gap: 24px; } |
| .time { font-size: 48px; letter-spacing: 0.5px; } |
| .status-right { display: flex; align-items: center; gap: 28px; } |
| .icon { width: 40px; height: 40px; fill: #efe6d8; opacity: 0.95; } |
| |
| |
| .header { |
| padding: 18px 24px 8px 24px; |
| } |
| .search-bar { |
| background: #2a2421; border-radius: 28px; |
| height: 112px; display: flex; align-items: center; |
| padding: 0 24px; box-shadow: 0 2px 0 #3a332e inset; |
| } |
| .hamburger-btn, .kebab-btn { |
| width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; |
| } |
| .search-text { |
| flex: 1; color: #e9e1d5; font-size: 44px; opacity: 0.95; |
| } |
| .divider { |
| height: 2px; background: #3a332e; margin: 18px 0 0 0; |
| } |
| |
| |
| .list { padding: 0 24px 140px 24px; } |
| .file-item { |
| display: flex; align-items: center; |
| padding: 28px 8px; |
| border-bottom: 2px solid #3a332e; |
| } |
| .thumb { |
| width: 112px; height: 112px; border-radius: 16px; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; font-size: 26px; text-align: center; |
| margin-right: 28px; |
| } |
| .doc-icon { |
| width: 96px; height: 96px; margin-right: 44px; |
| } |
| .pdf-badge { |
| width: 96px; height: 96px; border-radius: 12px; |
| background: #d96b6b; color: #fff; font-weight: 700; |
| display: flex; align-items: center; justify-content: center; |
| margin-right: 44px; letter-spacing: 1px; |
| } |
| .file-info { flex: 1; } |
| .file-name { |
| font-size: 44px; line-height: 1.1; margin-bottom: 10px; color: #efe6d8; |
| } |
| .file-meta { |
| font-size: 32px; color: #c6b9a6; |
| } |
| .action { |
| width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; |
| margin-left: 18px; |
| } |
| .action svg { width: 56px; height: 56px; fill: none; stroke: #e9e1d5; stroke-width: 6px; } |
| |
| |
| .gesture { |
| position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); |
| width: 360px; height: 16px; background: #e7e1d7; opacity: 0.85; |
| border-radius: 12px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left"> |
| <div class="time">9:15</div> |
| <svg class="icon" viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M12 4l8 16H4z"></path> |
| </svg> |
| </div> |
| <div class="status-right"> |
| <svg class="icon" viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M2 10c4-5 16-5 20 0v6H2v-6z"></path> |
| </svg> |
| <svg class="icon" viewBox="0 0 24 24" aria-hidden="true"> |
| <rect x="4" y="5" width="16" height="14" rx="2" ry="2"></rect> |
| <rect x="18" y="3" width="2" height="4"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="search-bar"> |
| <div class="hamburger-btn"> |
| <svg width="48" height="48" viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 6h18v2H3zM3 11h18v2H3zM3 16h18v2H3z" fill="#efe6d8"></path> |
| </svg> |
| </div> |
| <div class="search-text">Search this phone</div> |
| <div class="kebab-btn"> |
| <svg width="36" height="36" viewBox="0 0 24 24" aria-hidden="true"> |
| <circle cx="12" cy="5" r="2" fill="#efe6d8"></circle> |
| <circle cx="12" cy="12" r="2" fill="#efe6d8"></circle> |
| <circle cx="12" cy="19" r="2" fill="#efe6d8"></circle> |
| </svg> |
| </div> |
| </div> |
| <div class="divider"></div> |
| </div> |
|
|
| |
| <div class="list"> |
|
|
| |
| <div class="file-item"> |
| <svg class="doc-icon" viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M6 2h9l5 5v15H6z" fill="#6fd0e3"></path> |
| <path d="M15 2v5h5" fill="#8be2f1"></path> |
| </svg> |
| <div class="file-info"> |
| <div class="file-name">agents.txt</div> |
| <div class="file-meta">Nov 10, 1.15 kB, TXT document</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="file-item"> |
| <div class="thumb">[IMG: PNG thumbnail]</div> |
| <div class="file-info"> |
| <div class="file-name">fitbitshare_2123586381.PNG</div> |
| <div class="file-meta">Oct 30, 93.48 kB, PNG image</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="file-item"> |
| <div class="thumb">[IMG: PNG thumbnail]</div> |
| <div class="file-info"> |
| <div class="file-name">fitbitshare_2123101703.PNG</div> |
| <div class="file-meta">Oct 30, 92.77 kB, PNG image</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="file-item"> |
| <div class="thumb">[IMG: PNG thumbnail]</div> |
| <div class="file-info"> |
| <div class="file-name">fitbitshare_2123014230.PNG</div> |
| <div class="file-meta">Oct 30, 92.77 kB, PNG image</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="file-item"> |
| <div class="thumb">[IMG: PNG thumbnail]</div> |
| <div class="file-info"> |
| <div class="file-name">fitbitshare_2122912072.PNG</div> |
| <div class="file-meta">Oct 30, 93.30 kB, PNG image</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="file-item"> |
| <div class="pdf-badge">PDF</div> |
| <div class="file-info"> |
| <div class="file-name">Amsterdam-1.pdf</div> |
| <div class="file-meta">Oct 6, 8.45 MB, PDF document</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="file-item"> |
| <div class="pdf-badge">PDF</div> |
| <div class="file-info"> |
| <div class="file-name">Venice tour.pdf</div> |
| <div class="file-meta">Oct 6, 5.99 MB, PDF document</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="file-item"> |
| <div class="pdf-badge">PDF</div> |
| <div class="file-info"> |
| <div class="file-name">Amsterdam (1).pdf</div> |
| <div class="file-meta">Oct 6, 8.45 MB, PDF document</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="file-item"> |
| <div class="thumb">[IMG: Photo thumbnail]</div> |
| <div class="file-info"> |
| <div class="file-name">tomorrow land image.png</div> |
| <div class="file-meta">Oct 6, 1.30 MB, PNG image</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="file-item"> |
| <div class="thumb">[IMG: Photo thumbnail]</div> |
| <div class="file-info"> |
| <div class="file-name">vanice file.jpg</div> |
| <div class="file-meta">Oct 6, 125 kB, JPG image</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="file-item"> |
| <div class="pdf-badge">PDF</div> |
| <div class="file-info"> |
| <div class="file-name">Tomorrowland.pdf</div> |
| <div class="file-meta">Oct 6, 2.41 MB, PDF document</div> |
| </div> |
| <div class="action"> |
| <svg viewBox="0 0 24 24" aria-hidden="true"> |
| <path d="M3 9l6-6M21 9l-6-6M3 15l6 6M21 15l-6 6"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="gesture"></div> |
|
|
| </div> |
| </body> |
| </html> |