File size: 9,552 Bytes
67530d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | <!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 */
.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 */
.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 pill */
.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; }
/* List */
.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 new playlist button */
.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 card */
.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 */
.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 navigation */
.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 bar */
.gesture {
position: absolute; left: 50%; transform: translateX(-50%);
bottom: 240px; width: 180px; height: 10px; border-radius: 5px; background: #EAEAEA; opacity: 0.8;
}
/* Simple helper */
.muted { color: #B0B0B0; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>8:29</div>
<div class="status-icons">
<!-- simple dots to represent 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>
<!-- Header -->
<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">
<!-- Cast -->
<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>
<!-- Search -->
<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>
<!-- Kebab -->
<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>
<!-- Content -->
<div class="content">
<!-- Row: Watch later -->
<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>
<!-- Row: wedding dresses and makeup ideas -->
<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>
<!-- Row: News video playlist -->
<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>
<!-- Row: Scenic portrait video -->
<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">
|