File size: 8,979 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 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 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Playlist Options Modal</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: "Inter", Arial, sans-serif; }
#render-target {
position: relative;
overflow: hidden;
width: 1080px;
height: 2400px;
background: #0d0f12;
border-radius: 0;
box-shadow: none;
}
/* Background / underlying content hints */
.top-status {
position: absolute;
top: 24px;
left: 36px;
right: 36px;
height: 48px;
color: #ffffff;
display: flex;
align-items: center;
justify-content: space-between;
opacity: 0.95;
font-size: 38px;
letter-spacing: 0.5px;
}
.status-icons { display: flex; gap: 28px; align-items: center; }
.status-dot {
width: 18px; height: 18px; background: #fff; border-radius: 50%;
}
/* Dimmed cards behind modal */
.bg-card {
position: absolute;
width: 920px;
height: 540px;
left: 80px;
top: 220px;
background: #1f2227;
border-radius: 28px;
opacity: 0.5;
box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}
.bg-card.small {
top: 420px;
width: 720px;
height: 380px;
left: 180px;
opacity: 0.7;
}
/* Back chevron (underlay) */
.back-btn {
position: absolute;
top: 160px;
left: 36px;
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
opacity: 0.7;
}
.back-btn svg { width: 40px; height: 40px; stroke: #9aa0a6; stroke-width: 4; fill: none; }
/* Vertical ellipsis (underlay) */
.ellipsis {
position: absolute;
top: 180px;
right: 48px;
width: 16px;
height: 60px;
display: flex;
flex-direction: column;
justify-content: space-between;
opacity: 0.4;
}
.ellipsis span {
width: 12px; height: 12px; background: #9aa0a6; border-radius: 50%;
}
/* Overlay scrim */
.scrim {
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.9) 100%);
}
/* Main modal */
.modal {
position: absolute;
left: 40px;
right: 40px;
top: 520px;
background: #2a2d33;
border-radius: 28px;
box-shadow: 0 28px 80px rgba(0,0,0,0.65);
padding: 40px 36px 220px;
color: #e9ecef;
}
.cover {
width: 520px;
height: 520px;
margin: -160px auto 16px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 24px;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
box-shadow: 0 16px 36px rgba(0,0,0,0.6);
font-size: 32px;
font-weight: 600;
}
.title {
text-align: center;
font-size: 52px;
font-weight: 700;
margin-top: 28px;
letter-spacing: 0.3px;
color: #f2f4f7;
}
.subtitle {
text-align: center;
font-size: 34px;
color: #aeb4bc;
margin-top: 10px;
}
.options {
margin-top: 36px;
display: flex;
flex-direction: column;
gap: 34px;
}
.option {
display: flex;
align-items: center;
gap: 32px;
padding: 10px 4px;
}
.option svg {
width: 44px; height: 44px;
stroke: #d1d5db; stroke-width: 3; fill: none;
}
.option .text { font-size: 40px; color: #e9ecef; }
.option.muted .text { color: #d8dde3; }
.option.play svg { stroke: none; fill: #22c9a1; }
.option.play .text { color: #22c9a1; }
/* Cancel bar */
.cancel-bar {
position: absolute;
left: 40px;
right: 40px;
bottom: 240px;
height: 140px;
background: #2a2d33;
border-radius: 28px;
box-shadow: 0 20px 48px rgba(0,0,0,0.6);
display: flex;
align-items: center;
justify-content: center;
color: #e9ecef;
font-size: 44px;
font-weight: 600;
}
/* Bottom navigation (underlay preview) */
.bottom-nav {
position: absolute;
left: 0;
right: 0;
bottom: 120px;
height: 120px;
display: flex;
justify-content: space-around;
align-items: center;
color: #9aa0a6;
font-size: 32px;
opacity: 0.6;
}
.bottom-nav .active { color: #e9ecef; }
.bottom-nav svg { width: 36px; height: 36px; stroke: currentColor; stroke-width: 3; fill: none; display: block; margin: 0 auto 8px; }
/* Gesture Home bar */
.home-handle {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
width: 320px; height: 14px;
background: #e0e3e7;
border-radius: 16px;
opacity: 0.85;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar (simplified) -->
<div class="top-status">
<div>12:23</div>
<div class="status-icons">
<div class="status-dot" title="signal"></div>
<div class="status-dot" title="mail"></div>
<div class="status-dot" title="youtube"></div>
<div class="status-dot" title="settings"></div>
<div class="status-dot" title="wifi"></div>
<div class="status-dot" title="battery"></div>
</div>
</div>
<!-- Underlay hints -->
<div class="bg-card"></div>
<div class="bg-card small"></div>
<div class="back-btn">
<svg viewBox="0 0 40 40"><path d="M26 6 L10 20 L26 34"/></svg>
</div>
<div class="ellipsis">
<span></span><span></span><span></span>
</div>
<!-- Overlay scrim -->
<div class="scrim"></div>
<!-- Main modal -->
<div class="modal">
<div class="cover">[IMG: Playlist cover with musical note]</div>
<div class="title">Chill List</div>
<div class="subtitle">Just Updated</div>
<div class="options">
<div class="option play">
<svg viewBox="0 0 44 44"><path d="M10 6 L36 22 L10 38 Z"/></svg>
<div class="text">Play Now</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44"><path d="M10 10 L34 34"/><path d="M34 10 L10 34"/></svg>
<div class="text">Remove from Library</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M12 8 C18 8 22 10 22 16 L22 34" />
<circle cx="30" cy="30" r="4" />
<path d="M30 20 L30 40" />
<path d="M22 34 L14 34" />
</svg>
<div class="text">Add to Playlist</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M10 14 H30" />
<path d="M10 22 H26" />
<path d="M10 30 H22" />
<path d="M34 18 V26" />
<path d="M30 22 H38" />
</svg>
<div class="text">Add to Queue</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M22 28 a10 10 0 0 1 10 -10" />
<path d="M22 32 a14 14 0 0 1 14 -14" />
<circle cx="22" cy="34" r="2" />
</svg>
<div class="text">Playlist Radio</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M22 8 V28" />
<path d="M16 22 L22 28 L28 22" />
<path d="M12 34 H32" />
</svg>
<div class="text">Download</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M22 10 V28" />
<path d="M16 16 L22 10 L28 16" />
<path d="M12 30 H32 V36 H12 Z" />
</svg>
<div class="text">Share</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M12 30 L32 10" />
<path d="M30 8 L36 14" />
<path d="M10 32 H18 V36 H10 Z" />
</svg>
<div class="text">Edit Playlist</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M22 10 L30 34 H14 Z" />
<path d="M18 24 H26" />
</svg>
<div class="text">Rename Playlist</div>
</div>
<div class="option">
<svg viewBox="0 0 44 44">
<path d="M14 14 H30 V12 H26 V10 H18 V12 H14 Z" />
<path d="M14 14 V34 H30 V14 Z" />
</svg>
<div class="text">Delete Playlist</div>
</div>
</div>
</div>
<!-- Cancel bar -->
<div class="cancel-bar">Cancel</div>
<!-- Bottom navigation (underlay preview) -->
<div class="bottom-nav">
<div>
<svg viewBox="0 0 36 36"><path d="M6 18 L18 6 L30 18 V30 H22 V22 H14 V30 H6 Z"/></svg>
Home
</div>
<div>
<svg viewBox="0 0 36 36"><circle cx="16" cy="16" r="10"/><path d="M26 26 L32 32"/></svg>
Search
</div>
<div>
<svg viewBox="0 0 36 36"><path d="M8 12 H28"/><path d="M8 18 H24"/><path d="M8 24 H20"/></svg>
For You
</div>
<div class="active">
<svg viewBox="0 0 36 36"><path d="M8 10 H28 V28 H8 Z"/><path d="M8 18 H28"/></svg>
My Library
</div>
<div>
<svg viewBox="0 0 36 36"><path d="M10 26 H26"/><path d="M18 10 L26 18 L10 18 Z"/></svg>
Pro
</div>
</div>
<!-- Home gesture handle -->
<div class="home-handle"></div>
</div>
</body>
</html> |