| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1"> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width: 1080px; height: 2400px; |
| position: relative; overflow: hidden; |
| background: #0f1f1d; |
| color: #e7ece9; |
| } |
| |
| |
| .content { padding: 40px; } |
| .muted { color: #97a7a2; } |
| .accent { color: #87d8a7; } |
| .divider { height: 1px; background: #23302e; margin: 16px 0; } |
| |
| |
| .status-bar { |
| height: 96px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #e7ece9; |
| font-size: 38px; |
| letter-spacing: 0.5px; |
| } |
| .status-right { display: flex; align-items: center; gap: 24px; } |
| .status-icon { width: 36px; height: 36px; opacity: 0.85; } |
| |
| |
| .top-bar { |
| height: 120px; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| } |
| .hamburger { width: 64px; height: 64px; margin-right: 24px; } |
| .title { font-size: 68px; font-weight: 700; letter-spacing: 0.5px; } |
| .top-actions { margin-left: auto; display: flex; align-items: center; gap: 36px; } |
| .icon-btn { width: 60px; height: 60px; } |
| |
| |
| .filters { |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| padding: 0 40px; |
| } |
| .chip { |
| display: inline-flex; |
| align-items: center; |
| gap: 18px; |
| border: 2px solid #3a4946; |
| color: #cfe1db; |
| padding: 18px 26px; |
| border-radius: 28px; |
| font-size: 34px; |
| } |
| .chip svg { width: 34px; height: 34px; } |
| .grid-toggle { margin-left: auto; } |
| .grid-toggle .icon-btn { width: 56px; height: 56px; opacity: 0.9; } |
| |
| |
| .section-title { |
| padding: 28px 40px 10px 40px; |
| font-size: 40px; |
| color: #c7d2cf; |
| } |
| |
| |
| .cards { |
| padding: 0 40px 24px 40px; |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 36px; |
| } |
| .card { |
| position: relative; |
| height: 500px; |
| border-radius: 28px; |
| background: #1d2524; |
| border: 2px solid #2d3836; |
| overflow: hidden; |
| } |
| .card .expand { |
| position: absolute; |
| top: 18px; right: 18px; |
| width: 56px; height: 56px; |
| background: rgba(20, 27, 26, 0.6); |
| border-radius: 14px; |
| display: flex; align-items: center; justify-content: center; |
| border: 2px solid #2f3a38; |
| } |
| .card .thumb { |
| position: absolute; |
| left: 0; right: 0; top: 0; bottom: 120px; |
| display: flex; align-items: center; justify-content: center; |
| color: #9fb1ac; |
| } |
| .card .thumb .img { |
| width: 200px; height: 200px; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; font-size: 32px; border-radius: 16px; |
| } |
| .card .footer { |
| position: absolute; |
| left: 0; right: 0; bottom: 0; |
| height: 120px; |
| background: #18201f; |
| border-top: 2px solid #2d3836; |
| padding: 20px 28px; |
| display: flex; flex-direction: column; justify-content: center; |
| } |
| .file-row { |
| display: flex; align-items: center; gap: 18px; |
| font-size: 36px; |
| } |
| .file-meta { margin-top: 8px; font-size: 30px; color: #97a7a2; } |
| |
| .type-pill { |
| display: inline-flex; align-items: center; justify-content: center; |
| background: #c57b73; color: #2a1d1b; font-weight: 700; |
| width: 80px; height: 52px; border-radius: 10px; font-size: 28px; |
| } |
| .video-accent { color: #87d8a7; } |
| |
| |
| .gesture { |
| position: absolute; bottom: 40px; left: 50%; |
| transform: translateX(-50%); |
| width: 360px; height: 16px; border-radius: 16px; |
| background: #e7ece9; opacity: 0.6; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>12:23</div> |
| <div class="status-right"> |
| |
| <svg class="status-icon" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="10" fill="#cfe1db"></circle> |
| <path d="M12 6v6l4 2" stroke="#0f1f1d" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| <svg class="status-icon" viewBox="0 0 24 24"> |
| <path d="M2 18h20l-3-10H5z" fill="#cfe1db"></path> |
| </svg> |
| <svg class="status-icon" viewBox="0 0 24 24"> |
| <rect x="4" y="6" width="14" height="12" rx="2" fill="#cfe1db"></rect> |
| <rect x="19" y="10" width="2" height="4" fill="#cfe1db"></rect> |
| </svg> |
| <div style="font-size:32px; color:#cfe1db;">100%</div> |
| </div> |
| </div> |
|
|
| |
| <div class="top-bar"> |
| <svg class="hamburger" viewBox="0 0 24 24"> |
| <path d="M3 6h18M3 12h18M3 18h18" stroke="#e7ece9" stroke-width="2.4" stroke-linecap="round"></path> |
| </svg> |
| <div class="title">Downloads</div> |
| <div class="top-actions"> |
| |
| <svg class="icon-btn" viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="7" stroke="#e7ece9" stroke-width="2.2" fill="none"></circle> |
| <path d="M20 20l-4.5-4.5" stroke="#e7ece9" stroke-width="2.2" stroke-linecap="round"></path> |
| </svg> |
| |
| <svg class="icon-btn" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2.2" fill="#e7ece9"></circle> |
| <circle cx="12" cy="12" r="2.2" fill="#e7ece9"></circle> |
| <circle cx="12" cy="19" r="2.2" fill="#e7ece9"></circle> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="filters"> |
| <div class="accent" style="font-size:40px; margin-right:8px;">Downloads</div> |
| </div> |
| <div class="filters" style="margin-top: 16px;"> |
| <div class="chip"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M4 6h12l4 6-4 6H4z" fill="none" stroke="#cfe1db" stroke-width="2"></path> |
| <circle cx="9" cy="12" r="2" fill="#cfe1db"></circle> |
| </svg> |
| <span>Large files</span> |
| </div> |
| <div class="chip"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="8" fill="none" stroke="#cfe1db" stroke-width="2"></circle> |
| <path d="M12 8v5l3 2" stroke="#cfe1db" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| <span>This week</span> |
| </div> |
| <div class="grid-toggle" style="margin-left:auto;"> |
| <svg class="icon-btn" viewBox="0 0 24 24"> |
| <rect x="3" y="5" width="6" height="5" fill="#cfe1db"></rect> |
| <rect x="13" y="5" width="8" height="5" fill="#cfe1db"></rect> |
| <rect x="3" y="14" width="6" height="6" fill="#cfe1db"></rect> |
| <rect x="13" y="14" width="8" height="6" fill="#cfe1db"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="section-title">Files in Downloads</div> |
|
|
| |
| <div class="cards"> |
|
|
| |
| <div class="card"> |
| <div class="expand"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 10V3h7M21 10V3h-7M3 14v7h7M21 14v7h-7" fill="none" stroke="#cfe1db" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="thumb"> |
| <div class="img">[IMG: Contact Icon]</div> |
| </div> |
| <div class="footer"> |
| <div class="file-row"> |
| <svg viewBox="0 0 24 24" width="34" height="34"> |
| <circle cx="12" cy="8" r="3.5" fill="#cfe1db"></circle> |
| <path d="M4 20c2-4 6-4 8-4s6 0 8 4" fill="none" stroke="#cfe1db" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| <span style="font-weight:600;">contacts.vcf</span> |
| </div> |
| <div class="file-meta">76 B 11:24 AM</div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="thumb"> |
| <svg viewBox="0 0 120 120" width="120" height="120" class="video-accent"> |
| <rect x="20" y="40" width="80" height="50" rx="8" fill="none" stroke="#87d8a7" stroke-width="6"></rect> |
| <rect x="20" y="32" width="20" height="8" fill="#87d8a7"></rect> |
| <rect x="44" y="32" width="20" height="8" fill="#87d8a7"></rect> |
| </svg> |
| </div> |
| <div class="footer"> |
| <div class="file-row"> |
| <svg viewBox="0 0 24 24" width="34" height="34"> |
| <rect x="3" y="8" width="18" height="12" rx="2" fill="#87d8a7"></rect> |
| <rect x="3" y="6" width="6" height="2" fill="#87d8a7"></rect> |
| </svg> |
| <span style="font-weight:600;">production_id_3...</span> |
| </div> |
| <div class="file-meta">52.06 MB Dec 1</div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="thumb"> |
| <div class="type-pill">PDF</div> |
| </div> |
| <div class="footer"> |
| <div class="file-row"> |
| <div class="type-pill" style="width:70px; height:44px; font-size:26px;">PDF</div> |
| <span style="font-weight:600;">The Martian - A...</span> |
| </div> |
| <div class="file-meta">1.26 MB Nov 29</div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="thumb"> |
| <div class="type-pill">PDF</div> |
| </div> |
| <div class="footer"> |
| <div class="file-row"> |
| <div class="type-pill" style="width:70px; height:44px; font-size:26px;">PDF</div> |
| <span style="font-weight:600;">germanycountr...</span> |
| </div> |
| <div class="file-meta">51.00 MB Nov 9</div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="thumb"> |
| <div class="type-pill">PDF</div> |
| </div> |
| <div class="footer"> |
| <div class="file-row"> |
| <div class="type-pill" style="width:70px; height:44px; font-size:26px;">PDF</div> |
| <span style="font-weight:600;">Document.pdf</span> |
| </div> |
| <div class="file-meta">2.4 MB Nov 7</div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="thumb"> |
| <div class="type-pill">PDF</div> |
| </div> |
| <div class="footer"> |
| <div class="file-row"> |
| <div class="type-pill" style="width:70px; height:44px; font-size:26px;">PDF</div> |
| <span style="font-weight:600;">Report.pdf</span> |
| </div> |
| <div class="file-meta">840 KB Nov 5</div> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="gesture"></div> |
| </div> |
| </body> |
| </html> |