| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Add videos - Mock UI</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #121212; |
| color: #FFFFFF; |
| font-family: Roboto, Arial, sans-serif; |
| } |
| |
| |
| .status-bar { |
| height: 90px; |
| padding: 0 32px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #fff; |
| font-size: 36px; |
| } |
| .status-icons { |
| display: flex; |
| align-items: center; |
| gap: 22px; |
| } |
| .dot { width: 14px; height: 14px; background: #bbb; border-radius: 50%; } |
| .icon-battery { |
| width: 40px; height: 24px; border: 2px solid #bbb; border-radius: 4px; position: relative; |
| } |
| .icon-battery::after { |
| content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 12px; background: #bbb; border-radius: 2px; |
| } |
| .icon-battery .level { position: absolute; left: 3px; top: 3px; width: 28px; height: 16px; background: #bbb; } |
| |
| |
| .header { |
| height: 120px; |
| display: flex; |
| align-items: center; |
| padding: 0 24px; |
| border-bottom: 1px solid #1f1f1f; |
| } |
| .header .left { |
| width: 120px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .header .title { |
| flex: 1; |
| font-size: 44px; |
| font-weight: 500; |
| } |
| .header .right { |
| width: 160px; |
| text-align: right; |
| font-size: 36px; |
| color: #3EA6FF; |
| font-weight: 500; |
| } |
| .subnote { |
| padding: 18px 24px 8px 24px; |
| font-size: 30px; |
| color: #9E9E9E; |
| text-align: right; |
| } |
| |
| .section-title { |
| padding: 8px 24px 16px 24px; |
| font-size: 36px; |
| font-weight: 500; |
| } |
| |
| |
| .video-list { padding: 0 24px 24px 24px; } |
| .video-item { |
| display: flex; |
| align-items: flex-start; |
| margin-bottom: 28px; |
| position: relative; |
| } |
| .thumb { |
| width: 320px; |
| height: 180px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 18px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 28px; |
| position: relative; |
| overflow: hidden; |
| } |
| .thumb.vevo { border: 4px solid #F5D04E; } |
| .duration { |
| position: absolute; |
| right: 8px; bottom: 8px; |
| background: rgba(0,0,0,0.85); |
| color: #fff; |
| font-size: 26px; |
| padding: 6px 10px; |
| border-radius: 8px; |
| } |
| .badge-live { |
| position: absolute; |
| right: 8px; top: 8px; |
| background: #D32F2F; |
| color: #fff; |
| font-size: 22px; |
| padding: 6px 10px; |
| border-radius: 8px; |
| font-weight: 600; |
| } |
| .content { |
| flex: 1; |
| margin-left: 24px; |
| padding-right: 24px; |
| } |
| .title { |
| font-size: 36px; |
| line-height: 44px; |
| margin-top: 2px; |
| margin-bottom: 8px; |
| } |
| .meta { |
| font-size: 28px; |
| color: #9E9E9E; |
| } |
| .checkbox { |
| width: 56px; |
| height: 56px; |
| border: 3px solid #696969; |
| border-radius: 8px; |
| margin-top: 6px; |
| } |
| .checkbox.checked { |
| border-color: #3EA6FF; |
| background: #3EA6FF; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .checkbox.checked svg { width: 32px; height: 32px; } |
| |
| |
| .mini-player { |
| position: absolute; |
| right: 80px; |
| top: 1060px; |
| width: 520px; |
| height: 290px; |
| background: #101010; |
| border-radius: 28px; |
| box-shadow: 0 8px 24px rgba(0,0,0,0.6); |
| overflow: hidden; |
| border: 1px solid #232323; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .mini-player .img { |
| width: 100%; |
| height: 100%; |
| background: #E0E0E0; |
| border-top-left-radius: 28px; |
| border-top-right-radius: 28px; |
| border-bottom-left-radius: 28px; |
| border-bottom-right-radius: 28px; |
| border: 1px solid #BDBDBD; |
| color: #757575; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 28px; |
| } |
| |
| |
| .scrubber { |
| position: absolute; |
| bottom: 44px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 280px; |
| height: 10px; |
| background: #2a2a2a; |
| border-radius: 6px; |
| } |
| |
| |
| .icon-close { width: 48px; height: 48px; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>8:28</div> |
| <div class="status-icons"> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <svg width="28" height="24" viewBox="0 0 28 24"> |
| <path d="M2 20 L14 4 L26 20" stroke="#bbb" stroke-width="3" fill="none"/> |
| </svg> |
| <div class="icon-battery"> |
| <div class="level"></div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="left"> |
| <svg class="icon-close" viewBox="0 0 24 24"> |
| <path d="M4 4 L20 20 M20 4 L4 20" stroke="#fff" stroke-width="3" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="title">Add videos</div> |
| <div class="right">Next</div> |
| </div> |
|
|
| <div class="subnote">1 video selected</div> |
|
|
| <div class="section-title">Recently Watched</div> |
|
|
| <div class="video-list"> |
|
|
| |
| <div class="video-item"> |
| <div class="thumb"> |
| <div>[IMG: Fashion video thumbnail]</div> |
| <div class="badge-live">LIVE</div> |
| <div class="duration">8:03</div> |
| </div> |
| <div class="content"> |
| <div class="title">Autumn outfits inspo. Milan's fashion life in anticipation of M...</div> |
| <div class="meta">MILAN ON TREND Live • 13K views • 1 day ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="video-item"> |
| <div class="thumb vevo"> |
| <div>[IMG: Concert performance thumbnail]</div> |
| <div class="duration">4:59</div> |
| </div> |
| <div class="content"> |
| <div class="title">Luciano Pavarotti, James Brown - It's A Man's Man's Man's World...</div> |
| <div class="meta">Luciano Pavarotti • 92M views • 4 years ago</div> |
| </div> |
| <div class="checkbox checked"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 12 L10 17 L19 7" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="video-item"> |
| <div class="thumb"> |
| <div>[IMG: Runway show thumbnail]</div> |
| <div class="duration">15:38</div> |
| </div> |
| <div class="content"> |
| <div class="title">FIRDAWS | FULL FASHION SHOW</div> |
| <div class="meta">SERGEI SHUBENTSEV • 527K views • 6 years ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="video-item"> |
| <div class="thumb"> |
| <div>[IMG: Traditional fashion thumbnail]</div> |
| <div class="duration">1:11</div> |
| </div> |
| <div class="content"> |
| <div class="title">Arabic makeup/Arabic Jewellery /hairstyle /arabic dr...</div> |
| <div class="meta">fashion trend minsha • 2.9K views • 1 year ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="video-item"> |
| <div class="thumb vevo"> |
| <div>[IMG: Stage performance thumbnail]</div> |
| <div class="duration">4:31</div> |
| </div> |
| <div class="content"> |
| <div class="title">Maria Callas - H...</div> |
| <div class="meta">Classical music channel • 9.7M views • 5 years ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="video-item"> |
| <div class="thumb"> |
| <div>[IMG: Home video thumbnail]</div> |
| <div class="duration">1:01</div> |
| </div> |
| <div class="content"> |
| <div class="title">Crazy challenge at home</div> |
| <div class="meta">DesSoFunny • 9.5M views • 3 weeks ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="video-item"> |
| <div class="thumb"> |
| <div>[IMG: News short thumbnail]</div> |
| <div class="duration">0:25</div> |
| </div> |
| <div class="content"> |
| <div class="title">Toddler goes into denial when mom tells her it’s Football Satu...</div> |
| <div class="meta">Majically News • 23M views • 9 months ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="video-item"> |
| <div class="thumb"> |
| <div>[IMG: Duet performance thumbnail]</div> |
| <div class="duration">5:06</div> |
| </div> |
| <div class="content"> |
| <div class="title">Luciano Pavarotti & Celine Dion - I Hate You Then I Love You</div> |
| <div class="meta">glennSuperdude • 29M views • 10 years ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="video-item"> |
| <div class="thumb vevo"> |
| <div>[IMG: Live concert thumbnail]</div> |
| <div class="duration">3:19</div> |
| </div> |
| <div class="content"> |
| <div class="title">Luciano Pavarotti, Bryan Adams - 'O Sole Mio (Live)</div> |
| <div class="meta">Luciano Pavarotti • 3.9M views • 4 years ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="mini-player"> |
| <div class="img">[IMG: Mini player preview]</div> |
| </div> |
|
|
| |
| <div class="scrubber"></div> |
|
|
| </div> |
| </body> |
| </html> |