File size: 10,858 Bytes
ff1f000 | 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 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Playlists 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: Arial, Helvetica, sans-serif;
}
/* Status bar */
.status-bar {
height: 90px; padding: 0 40px;
display: flex; align-items: center; justify-content: space-between;
color: #bbb; font-size: 34px;
}
.status-icons { display: flex; align-items: center; gap: 26px; }
.status-dot { width: 10px; height: 10px; background:#bbb; border-radius:50%; display:inline-block; }
/* Header */
.header {
height: 150px; padding: 0 36px; display: flex; align-items: center; justify-content: space-between;
}
.header-left { display: flex; align-items: center; gap: 24px; }
.title { font-size: 88px; font-weight: 700; letter-spacing: 0.5px; }
.header-right { display: flex; align-items: center; gap: 36px; }
.icon-btn { width: 64px; height: 64px; display: flex; justify-content: center; align-items: center; border-radius: 32px; }
.icon-btn svg { fill: none; stroke: #fff; stroke-width: 2.2; }
/* Sort pill */
.sort-pill {
margin: 8px 0 24px 40px; display: inline-flex; align-items: center; gap: 18px;
background: #1e1e1e; border: 1px solid #2a2a2a; color: #eee;
padding: 20px 26px; border-radius: 40px; font-size: 36px;
}
/* List */
.list { padding: 0 36px; }
.card {
display: flex; align-items: center; gap: 26px;
margin-bottom: 38px;
}
.thumb {
width: 480px; height: 270px; background: #E0E0E0;
border: 1px solid #BDBDBD; color: #757575;
border-radius: 24px; overflow: hidden;
display: flex; justify-content: center; align-items: center; text-align: center;
font-size: 34px;
position: relative;
}
.thumb .overlay {
position: absolute; bottom: 16px; right: 16px;
background: rgba(18,18,18,0.9); color: #fff;
border-radius: 18px; padding: 10px 16px; display: flex; align-items: center; gap: 10px;
font-size: 30px; border: 1px solid #2a2a2a;
}
.details { flex: 1; min-width: 0; }
.title-row { display: flex; align-items: center; justify-content: space-between; }
.card-title { font-size: 48px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.sub { font-size: 32px; color: #bbbbbb; }
.kebab {
width: 60px; height: 60px; display: flex; justify-content: center; align-items: center;
}
.kebab svg { fill: #bbb; }
/* Create playlist button */
.create-btn {
margin: 40px 36px 0; height: 120px; border-radius: 60px;
background: #1e1e1e; border: 1px solid #2a2a2a;
display: flex; justify-content: center; align-items: center;
font-size: 40px; color: #e5e5e5;
}
/* Mini player */
.mini-player {
position: absolute; left: 0; right: 0; bottom: 170px;
height: 170px; background: #0f0f0f; border-top: 1px solid #2a2a2a;
display: flex; align-items: center; padding: 0 30px; gap: 24px;
}
.mini-thumb {
width: 260px; height: 140px; background: #E0E0E0; border: 1px solid #BDBDBD;
color: #757575; display: flex; justify-content: center; align-items: center; font-size: 28px; border-radius: 16px;
}
.mini-info { flex: 1; min-width: 0; }
.mini-title { font-size: 36px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-sub { font-size: 30px; color: #bbb; margin-top: 6px; }
.mini-actions { display: flex; align-items: center; gap: 26px; }
.mini-actions svg { stroke: #fff; fill: none; stroke-width: 2.2; }
/* Bottom nav */
.bottom-nav {
position: absolute; left: 0; right: 0; bottom: 0;
height: 170px; background: #0b0b0b; border-top: 1px solid #2a2a2a;
display: flex; align-items: center; justify-content: space-around;
padding-bottom: 8px;
}
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #dcdcdc; font-size: 28px; }
.nav-item svg { width: 56px; height: 56px; stroke: #dcdcdc; fill: none; stroke-width: 2.2; }
.nav-item .dot {
width: 16px; height: 16px; background: #ff3b3b; border-radius: 50%; position: absolute; margin-top: -6px; margin-left: 36px;
}
/* subtle separators to mimic cards overlapping */
.divider { height: 20px; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>8:26</div>
<div class="status-icons">
<span class="status-dot"></span>
<span class="status-dot"></span>
<span class="status-dot"></span>
<svg width="30" height="30" viewBox="0 0 24 24">
<rect x="1" y="8" width="18" height="12" stroke="#bbb" fill="none" rx="2"></rect>
<path d="M21 12c1.5 1 1.5 3 0 4" stroke="#bbb"></path>
</svg>
<svg width="30" height="30" viewBox="0 0 24 24">
<circle cx="10" cy="10" r="6" stroke="#bbb" fill="none"></circle>
<path d="M15 15l6 6" stroke="#bbb"></path>
</svg>
<svg width="30" height="30" viewBox="0 0 24 24">
<path d="M6 5h12M6 12h12M6 19h12" stroke="#bbb"></path>
</svg>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="header-left">
<div class="icon-btn">
<svg width="64" height="64" viewBox="0 0 24 24">
<path d="M15 6l-6 6 6 6" stroke="#fff" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
<div class="title">Playlists</div>
</div>
<div class="header-right">
<div class="icon-btn">
<svg width="64" height="64" viewBox="0 0 24 24">
<rect x="2" y="8" width="16" height="12" rx="2"></rect>
<path d="M20 12c1 1 1 3 0 4"></path>
</svg>
</div>
<div class="icon-btn">
<svg width="64" height="64" viewBox="0 0 24 24">
<circle cx="11" cy="11" r="7"></circle>
<path d="M20 20l-4-4"></path>
</svg>
</div>
<div class="icon-btn">
<svg width="64" height="64" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#fff" stroke="none"></circle>
<circle cx="12" cy="12" r="2" fill="#fff" stroke="none"></circle>
<circle cx="12" cy="19" r="2" fill="#fff" stroke="none"></circle>
</svg>
</div>
</div>
</div>
<!-- Sort pill -->
<div class="sort-pill">
<span>Recently added</span>
<svg width="32" height="32" viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6" stroke="#eee" fill="none" stroke-width="2.2"></path>
</svg>
</div>
<!-- Playlist list -->
<div class="list">
<!-- Card 1 -->
<div class="card">
<div class="thumb">
[IMG: Watch later thumbnail]
<div class="overlay">
<svg width="26" height="26" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" stroke="#fff" fill="none"></circle>
<path d="M12 7v6l4 2" stroke="#fff"></path>
</svg>
<span>0</span>
</div>
</div>
<div class="details">
<div class="title-row">
<div class="card-title">Watch later</div>
</div>
<div class="sub">Private</div>
</div>
</div>
<!-- Card 2 -->
<div class="card">
<div class="thumb">[IMG: Fashion runway thumbnail]</div>
<div class="details">
<div class="title-row">
<div class="card-title">wedding dresses and makeup ideas</div>
<div class="kebab">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="4" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="20" r="2"></circle>
</svg>
</div>
</div>
<div class="sub">Private 路 Playlist 路 Updated today</div>
</div>
</div>
<!-- Card 3 -->
<div class="card">
<div class="thumb">[IMG: Abstract painting thumbnail]</div>
<div class="details">
<div class="title-row">
<div class="card-title">Moody</div>
<div class="kebab">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="4" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="20" r="2"></circle>
</svg>
</div>
</div>
<div class="sub">Private 路 Playlist 路 Updated today</div>
</div>
</div>
<!-- Card 4 -->
<div class="card">
<div class="thumb">[IMG: Mixed clips thumbnail]</div>
<div class="details">
<div class="title-row">
<div class="card-title">Liked videos</div>
<div class="kebab">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="4" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="20" r="2"></circle>
</svg>
</div>
</div>
<div class="sub">Private 路 Playlist</div>
</div>
</div>
<div class="create-btn">Create new playlist</div>
</div>
<!-- Mini player -->
<div class="mini-player">
<div class="mini-thumb">[IMG: Music performance thumbnail]</div>
<div class="mini-info">
<div class="mini-title">Luciano Pavarotti, James Brow..</div>
<div class="mini-sub">LucianoPavarottiVEVO</div>
</div>
<div class="mini-actions">
<svg width="62" height="62" viewBox="0 0 24 24">
<path d="M8 5l12 7-12 7z" fill="#fff" stroke="none"></path>
</svg>
<svg width="62" height="62" viewBox="0 0 24 24">
<path d="M5 5l14 14M19 5L5 19"></path>
</svg>
</div>
</div>
<!-- Bottom navigation -->
<div class="bottom-nav">
<div class="nav-item">
<svg viewBox="0 0 24 24">
<path d="M3 11l9-7 9 7M5 10v9h14v-9" ></path>
</svg>
<div>Home</div>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24">
<path d="M8 3l8 6-8 6 8 6" ></path>
</svg>
<div>Shorts</div>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10"></circle>
<path d="M12 7v10M7 12h10"></path>
</svg>
<div> </div>
</div>
<div class="nav-item" style="position:relative;">
<svg viewBox="0 0 24 24">
<rect x="3" y="6" width="18" height="12" rx="2"></rect>
<path d="M10 10l6 4-6 4" ></path>
</svg>
<span class="dot"></span>
<div>Subscriptions</div>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24">
<rect x="4" y="5" width="16" height="14" rx="2"></rect>
<path d="M7 9h10M7 13h10"></path>
</svg>
<div>Library</div>
</div>
</div>
</div>
</body>
</html> |