| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Playlists Screen</title> |
| <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: #121212; color: #FFFFFF; |
| } |
| |
| |
| .status-bar { |
| position: absolute; top: 0; left: 0; width: 100%; height: 90px; |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 0 36px; color: #fff; font-size: 36px; opacity: 0.9; |
| } |
| .status-icons { display: flex; gap: 24px; align-items: center; } |
| |
| |
| .header { |
| position: absolute; top: 90px; left: 0; width: 100%; height: 220px; |
| padding: 0 36px; |
| } |
| .header-top { |
| display: flex; align-items: center; justify-content: space-between; |
| } |
| .left-group { display: flex; align-items: center; gap: 24px; } |
| .title { font-weight: 700; font-size: 96px; line-height: 1.1; margin-top: 12px; } |
| .actions { display: flex; gap: 36px; align-items: center; } |
| .icon-btn { width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; } |
| .icon-btn svg { width: 48px; height: 48px; } |
| |
| |
| .filter-row { margin-top: 24px; display: flex; align-items: center; gap: 24px; } |
| .pill { |
| background: #2A2A2A; border-radius: 48px; padding: 20px 28px; |
| display: inline-flex; align-items: center; gap: 14px; font-size: 40px; |
| } |
| .pill svg { width: 36px; height: 36px; } |
| |
| |
| .content { |
| position: absolute; top: 310px; left: 0; right: 0; bottom: 400px; |
| padding: 0 36px; overflow-y: auto; |
| } |
| .list-row { |
| display: flex; gap: 28px; align-items: center; |
| margin-bottom: 34px; |
| } |
| .thumb { |
| width: 480px; height: 270px; border-radius: 28px; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; font-size: 34px; text-align: center; padding: 12px; |
| position: relative; |
| } |
| .badge { |
| position: absolute; bottom: 16px; right: 16px; |
| background: rgba(0,0,0,0.7); color: #fff; font-size: 32px; |
| padding: 8px 14px; border-radius: 14px; |
| display: flex; align-items: center; gap: 8px; |
| } |
| .row-info { flex: 1; } |
| .row-title { font-size: 52px; font-weight: 700; margin-bottom: 8px; } |
| .row-sub { font-size: 36px; color: #B0B0B0; } |
| .row-menu { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; } |
| |
| |
| .create-btn { |
| width: 100%; height: 120px; background: #2A2A2A; border-radius: 60px; |
| display: flex; align-items: center; justify-content: center; |
| font-size: 44px; font-weight: 600; margin: 24px 0 36px 0; |
| } |
| |
| |
| .toast { |
| background: #FFFFFF; color: #000; border-radius: 28px; |
| padding: 28px; display: flex; align-items: center; justify-content: space-between; |
| font-size: 42px; margin-bottom: 24px; |
| } |
| .toast .action { color: #3AB4FF; font-weight: 600; } |
| |
| |
| .mini-player { |
| position: absolute; left: 0; right: 0; bottom: 220px; |
| height: 180px; background: #1A1A1A; border-top: 1px solid #2A2A2A; |
| display: flex; align-items: center; padding: 0 24px; gap: 24px; |
| } |
| .mini-thumb { |
| width: 210px; height: 140px; border-radius: 14px; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; font-size: 28px; |
| } |
| .mini-info { flex: 1; min-width: 0; } |
| .mini-title { |
| font-size: 40px; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; |
| } |
| .mini-sub { font-size: 32px; color: #B0B0B0; } |
| .mini-actions { display: flex; gap: 24px; } |
| |
| |
| .bottom-nav { |
| position: absolute; left: 0; right: 0; bottom: 0; |
| height: 220px; background: #0F0F0F; display: flex; |
| align-items: center; justify-content: space-around; border-top: 1px solid #202020; |
| } |
| .nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #CCCCCC; } |
| .nav-item .label { font-size: 30px; } |
| .nav-item svg { width: 56px; height: 56px; } |
| .nav-center { |
| width: 120px; height: 120px; background: #2A2A2A; border-radius: 60px; |
| display: flex; align-items: center; justify-content: center; margin-top: -40px; |
| } |
| .notif-dot { |
| position: absolute; width: 18px; height: 18px; background: #E53935; border-radius: 50%; |
| right: -6px; top: -6px; |
| } |
| |
| |
| .gesture { |
| position: absolute; left: 50%; transform: translateX(-50%); |
| bottom: 240px; width: 180px; height: 10px; border-radius: 5px; background: #EAEAEA; opacity: 0.8; |
| } |
| |
| |
| .muted { color: #B0B0B0; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>8:29</div> |
| <div class="status-icons"> |
| |
| <svg width="28" height="28"><circle cx="14" cy="14" r="6" fill="#fff"/></svg> |
| <svg width="28" height="28"><rect x="6" y="6" width="16" height="16" fill="#fff"/></svg> |
| <svg width="28" height="28"><circle cx="14" cy="14" r="12" fill="none" stroke="#fff" stroke-width="2"/></svg> |
| <svg width="28" height="28"><circle cx="14" cy="14" r="3" fill="#fff"/></svg> |
| <svg width="28" height="28"><path d="M4 22 L24 22" stroke="#fff" stroke-width="3"/></svg> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="header-top"> |
| <div class="left-group"> |
| <div class="icon-btn" aria-label="Back"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M30 10 L16 24 L30 38" stroke="#fff" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
| <div class="actions"> |
| |
| <div class="icon-btn" aria-label="Cast"> |
| <svg viewBox="0 0 48 48"> |
| <rect x="6" y="10" width="30" height="22" rx="3" ry="3" stroke="#fff" stroke-width="3" fill="none"/> |
| <path d="M6 34 Q12 34 16 38" stroke="#fff" stroke-width="3" fill="none"/> |
| <path d="M6 34 Q8 34 10 36" stroke="#fff" stroke-width="3" fill="none"/> |
| </svg> |
| </div> |
| |
| <div class="icon-btn" aria-label="Search"> |
| <svg viewBox="0 0 48 48"> |
| <circle cx="21" cy="21" r="12" stroke="#fff" stroke-width="3" fill="none"/> |
| <path d="M32 32 L42 42" stroke="#fff" stroke-width="3" stroke-linecap="round"/> |
| </svg> |
| </div> |
| |
| <div class="icon-btn" aria-label="More"> |
| <svg viewBox="0 0 48 48"> |
| <circle cx="24" cy="10" r="3" fill="#fff"/> |
| <circle cx="24" cy="24" r="3" fill="#fff"/> |
| <circle cx="24" cy="38" r="3" fill="#fff"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="title">Playlists</div> |
| <div class="filter-row"> |
| <div class="pill"> |
| <span>Recently added</span> |
| <svg viewBox="0 0 24 24"> |
| <path d="M6 9 L12 15 L18 9" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
| |
| <div class="list-row"> |
| <div class="thumb">[IMG: Watch later tile] |
| <div class="badge"> |
| <svg width="28" height="28" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="9" stroke="#fff" stroke-width="2" fill="none"/> |
| <path d="M12 7 L12 12 L16 14" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| <span>0</span> |
| </div> |
| </div> |
| <div class="row-info"> |
| <div class="row-title">Watch later</div> |
| <div class="row-sub">Private</div> |
| </div> |
| </div> |
|
|
| |
| <div class="list-row"> |
| <div class="thumb">[IMG: Fashion runway video]</div> |
| <div class="row-info"> |
| <div class="row-title">wedding dresses and makeup ideas</div> |
| <div class="row-sub">Private · Playlist<span class="muted"> · Updated today</span></div> |
| </div> |
| <div class="row-menu"> |
| <svg viewBox="0 0 48 48"> |
| <circle cx="24" cy="12" r="4" fill="#fff"/> |
| <circle cx="24" cy="24" r="4" fill="#fff"/> |
| <circle cx="24" cy="36" r="4" fill="#fff"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="list-row"> |
| <div class="thumb">[IMG: News video thumbnail] |
| <div class="badge"> |
| <svg width="28" height="28" viewBox="0 0 24 24"> |
| <rect x="4" y="6" width="16" height="12" stroke="#fff" stroke-width="2" fill="none" rx="2" ry="2"/> |
| <path d="M10 9 L15 12 L10 15 Z" fill="#fff"/> |
| </svg> |
| <span>5</span> |
| </div> |
| </div> |
| <div class="row-info"> |
| <div class="row-title">News & clips</div> |
| <div class="row-sub">Private</div> |
| </div> |
| </div> |
|
|
| |
| <div class="list-row"> |
| <div class="thumb">[IMG: Scenic portrait video]</div> |
| <div class="row-info"> |
| <div class="row-title">Travel moments</div> |
| <div class="row-sub">Private</div> |
| </div> |
| <div class="row-menu"> |
| <svg viewBox="0 0 48 48"> |
|
|