File size: 9,889 Bytes
5501681 | 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 361 362 363 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>All recordings UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #0d0a0a;
}
/* Top app bar */
.appbar {
position: absolute;
top: 80px;
left: 48px;
right: 48px;
height: 120px;
display: flex;
align-items: center;
color: #d8d3d3;
}
.appbar .title {
font-size: 64px;
font-weight: 700;
color: #cfc9c9;
margin-left: 24px;
}
.appbar .actions {
margin-left: auto;
display: flex;
gap: 36px;
}
.icon-btn {
width: 64px; height: 64px;
display: flex; justify-content: center; align-items: center;
border-radius: 16px;
}
.icon-btn svg { fill: none; stroke: #cfc9c9; stroke-width: 4; }
/* Category pill */
.tag-row {
position: absolute;
top: 220px;
left: 48px;
right: 48px;
display: flex;
align-items: center;
gap: 20px;
}
.tag {
display: inline-flex; align-items: center; gap: 16px;
background: #6b2424;
color: #f4d9d9;
padding: 18px 28px;
border-radius: 16px;
font-weight: 700;
letter-spacing: 1px;
}
.tag svg { stroke: #f4d9d9; }
/* Recording cards */
.list {
position: absolute;
top: 310px;
left: 48px;
right: 48px;
}
.card {
background: #161212;
color: #d9d5d5;
border-radius: 36px;
padding: 40px 44px;
margin-bottom: 42px;
box-shadow: 0 10px 30px rgba(0,0,0,0.35);
position: relative;
}
.card .title {
font-size: 44px;
font-weight: 700;
color: #cfc9c9;
margin-bottom: 24px;
opacity: 0.85;
}
.meta {
display: flex; align-items: center; gap: 16px;
color: #b0a1a1;
font-size: 32px;
}
.red-dot {
width: 14px; height: 14px; background: #c2352d; border-radius: 50%;
display: inline-block;
}
.card .right {
position: absolute; right: 30px; top: 30px; display: flex; align-items: center; gap: 24px;
}
.duration {
font-size: 32px; color: #bfb6b6;
}
.menu-icon svg { stroke: #bfb6b6; }
.heart {
position: absolute; right: 34px; bottom: 36px;
}
.heart svg { stroke: #c54b4b; fill: none; stroke-width: 5; }
/* Bottom sheet */
.sheet {
position: absolute;
left: 0; right: 0; bottom: 0;
height: 980px;
background: #472726;
border-top-left-radius: 48px;
border-top-right-radius: 48px;
color: #f2e9e9;
box-shadow: 0 -20px 40px rgba(0,0,0,0.6);
padding: 36px 48px 120px 48px;
}
.sheet .handle {
width: 180px; height: 18px; background: #6a4544; border-radius: 9px; margin: 10px auto 38px;
}
.sheet .header {
display: flex; align-items: flex-start;
}
.sheet .header .title {
font-size: 52px; font-weight: 800; color: #ffffff; flex: 1;
}
.sheet .header .right {
display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
}
.sheet .right .duration { font-size: 36px; color: #e7dbdb; }
.sheet .submeta {
margin-top: 10px; color: #e0d2d2; opacity: 0.9; font-size: 32px;
}
.divider {
height: 2px; background: #63403f; margin: 40px 0 16px 0;
}
.actions {
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 80px;
row-gap: 42px;
margin-top: 10px;
}
.action {
display: flex; align-items: center; gap: 28px;
color: #f1e6e6; font-size: 38px; font-weight: 600;
}
.action .aicon {
width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
}
.action .aicon svg { stroke: #e4d0cf; fill: none; stroke-width: 4; }
.home-indicator {
position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
width: 300px; height: 16px; background: #e9e9e9; border-radius: 12px; opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- App bar -->
<div class="appbar">
<div class="icon-btn">
<svg width="44" height="44" viewBox="0 0 24 24">
<path d="M3 6h18M3 12h18M3 18h18"/>
</svg>
</div>
<div class="title">All recordings</div>
<div class="actions">
<div class="icon-btn">
<svg width="44" height="44" viewBox="0 0 24 24">
<circle cx="11" cy="11" r="7"></circle>
<path d="M21 21l-4.5-4.5"></path>
</svg>
</div>
<div class="icon-btn">
<svg width="44" height="44" viewBox="0 0 24 24">
<path d="M4 6h16M7 12h10M10 18h7"/>
</svg>
</div>
</div>
</div>
<!-- Tag -->
<div class="tag-row">
<div class="tag">
<svg width="32" height="32" viewBox="0 0 24 24">
<path d="M3 6h7l2 3h9v9H3z"/>
</svg>
<span>ALL RECORDINGS</span>
</div>
</div>
<!-- List of recordings -->
<div class="list">
<div class="card">
<div class="title">recording2023-11-17 12-16-50</div>
<div class="meta">
<span class="red-dot"></span>
<span>Nov 17, 2023 12:16 PM</span>
</div>
<div class="right">
<div class="menu-icon">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="19" r="2"></circle>
</svg>
</div>
<div class="duration">00:07</div>
</div>
<div class="heart">
<svg width="54" height="54" viewBox="0 0 24 24">
<path d="M12 21s-7-4.8-7-10.2C5 8 6.8 6.2 9 6.2c1.5 0 2.7.8 3 1.9.3-1.1 1.5-1.9 3-1.9 2.2 0 4 1.8 4 4.6C19 16.2 12 21 12 21z"/>
</svg>
</div>
</div>
<div class="card" style="opacity:0.85;">
<div class="title">recording2023-11-17 14-10-57</div>
<div class="meta">
<span class="red-dot"></span>
<span>Nov 17, 2023 2:11 PM</span>
</div>
<div class="right">
<div class="menu-icon">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="19" r="2"></circle>
</svg>
</div>
<div class="duration">00:03</div>
</div>
<div class="heart">
<svg width="54" height="54" viewBox="0 0 24 24">
<path d="M12 21s-7-4.8-7-10.2C5 8 6.8 6.2 9 6.2c1.5 0 2.7.8 3 1.9.3-1.1 1.5-1.9 3-1.9 2.2 0 4 1.8 4 4.6C19 16.2 12 21 12 21z"/>
</svg>
</div>
</div>
<div class="card" style="opacity:0.8;">
<div class="title">recording2023-11-20 10-43-12</div>
<div class="meta">
<span class="red-dot"></span>
<span>Nov 20, 2023 10:44 AM</span>
</div>
<div class="right">
<div class="menu-icon">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="19" r="2"></circle>
</svg>
</div>
<div class="duration">00:44</div>
</div>
<div class="heart">
<svg width="54" height="54" viewBox="0 0 24 24">
<path d="M12 21s-7-4.8-7-10.2C5 8 6.8 6.2 9 6.2c1.5 0 2.7.8 3 1.9.3-1.1 1.5-1.9 3-1.9 2.2 0 4 1.8 4 4.6C19 16.2 12 21 12 21z"/>
</svg>
</div>
</div>
</div>
<!-- Bottom sheet with actions -->
<div class="sheet">
<div class="handle"></div>
<div class="header">
<div class="title">recording2023-11-17 12-16-50</div>
<div class="right">
<div class="duration">00:07</div>
<div class="heart">
<svg width="44" height="44" viewBox="0 0 24 24">
<path d="M12 21s-7-4.8-7-10.2C5 8 6.8 6.2 9 6.2c1.5 0 2.7.8 3 1.9.3-1.1 1.5-1.9 3-1.9 2.2 0 4 1.8 4 4.6C19 16.2 12 21 12 21z"/>
</svg>
</div>
</div>
</div>
<div class="submeta">Nov 17, 2023 12:16 PM | 0.13 MB</div>
<div class="divider"></div>
<div class="actions">
<div class="action">
<div class="aicon">
<svg viewBox="0 0 24 24">
<path d="M5 12l4 4 10-10"/>
</svg>
</div>
<div>Select</div>
</div>
<div class="action">
<div class="aicon">
<svg viewBox="0 0 24 24">
<circle cx="6" cy="12" r="2"/><circle cx="12" cy="8" r="2"/><circle cx="18" cy="12" r="2"/>
<path d="M8 12l4-4 4 4"/>
</svg>
</div>
<div>Share</div>
</div>
<div class="action">
<div class="aicon">
<svg viewBox="0 0 24 24">
<path d="M5 19v-8M10 19v-12M15 19v-6M20 19v-10"/>
</svg>
</div>
<div>Edit</div>
</div>
<div class="action">
<div class="aicon">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="6"/>
</svg>
</div>
<div>Resume</div>
</div>
<div class="action">
<div class="aicon">
<svg viewBox="0 0 24 24">
<path d="M5 6h8M5 12h8M5 18h8"/>
<path d="M17 9l3 3-3 3"/>
</svg>
</div>
<div>Rename</div>
</div>
<div class="action">
<div class="aicon">
<svg viewBox="0 0 24 24">
<path d="M5 14l10-10 4 4-10 10H5z"/>
<path d="M3 21h6"/>
</svg>
</div>
<div>Notes</div>
</div>
<div class="action">
<div class="aicon">
<svg viewBox="0 0 24 24">
<path d="M6 7h12l-1 13H7L6 7z"/>
<path d="M10 11v6M14 11v6"/>
<path d="M9 7l1-3h4l1 3"/>
</svg>
</div>
<div>Delete</div>
</div>
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html> |