File size: 9,236 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Files List UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #1f1713; /* dark brown-black */
color: #e9dfd0;
}
/* Status bar */
.status-bar {
height: 110px;
padding: 20px 32px;
display: flex;
align-items: center;
justify-content: space-between;
color: #efe6d8;
font-size: 42px;
letter-spacing: 0.5px;
}
.status-icons { display: flex; align-items: center; gap: 28px; }
.status-icons svg { width: 52px; height: 52px; fill: none; stroke: #efe6d8; stroke-width: 6; }
/* App bar with search */
.app-bar {
height: 140px;
padding: 0 26px;
display: flex; align-items: center; gap: 24px;
}
.icon-btn { width: 78px; height: 78px; display: flex; align-items: center; justify-content: center; border-radius: 20px; }
.icon-btn svg { width: 54px; height: 54px; fill: none; stroke: #e9dfd0; stroke-width: 8; }
.search {
flex: 1;
height: 90px;
border-radius: 22px;
background: #322822;
color: #cabfb0;
font-size: 40px;
padding: 0 28px;
display: flex; align-items: center;
box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.kebab svg { width: 42px; height: 42px; stroke: none; fill: #e9dfd0; }
.separator { height: 2px; background: #423831; margin-top: 18px; }
/* File list */
.list { padding-bottom: 160px; }
.file-row {
display: flex; align-items: center;
gap: 30px;
padding: 32px 28px;
border-top: 1px solid #3b312b;
}
.thumb, .doc-icon {
width: 96px; height: 96px; border-radius: 18px;
flex-shrink: 0;
}
/* Image placeholder per instructions */
.img-ph {
width: 96px; height: 96px;
background: #E0E0E0; border: 1px solid #BDBDBD;
border-radius: 18px;
display: flex; justify-content: center; align-items: center;
color: #757575; font-size: 22px; text-align: center; padding: 8px;
}
.doc-icon {
background: #143a39;
border: 2px solid #28d3cf;
display: flex; align-items: center; justify-content: center;
}
.doc-icon svg { width: 58px; height: 58px; stroke: #28d3cf; stroke-width: 6; fill: none; }
.pdf-pill {
width: 72px; height: 72px; border-radius: 12px;
background: #d86a6a; color: #fff;
display: flex; align-items: center; justify-content: center;
font-weight: 700; font-size: 26px;
}
.file-info { flex: 1; min-width: 0; }
.title {
font-size: 42px; line-height: 52px; color: #f1e8da;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.meta {
margin-top: 8px; font-size: 28px; color: #c9bdaf;
}
.actions {
width: 90px; height: 90px; display: flex; align-items: center; justify-content: center;
}
.actions svg { width: 54px; height: 54px; stroke: #e9dfd0; stroke-width: 8; fill: none; }
/* Bottom gesture bar */
.gesture {
position: absolute; bottom: 36px; left: 50%;
transform: translateX(-50%);
width: 360px; height: 14px; border-radius: 9px; background: #dcdcdc;
opacity: 0.85;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>9:14</div>
<div class="status-icons">
<!-- simple cellular/wifi and battery icons -->
<svg viewBox="0 0 32 32">
<path d="M2 24 L16 10 L30 24" />
<circle cx="16" cy="22" r="3" />
</svg>
<svg viewBox="0 0 42 28">
<rect x="2" y="4" width="32" height="20" rx="4"></rect>
<rect x="36" y="10" width="4" height="8" rx="2"></rect>
</svg>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="icon-btn">
<svg viewBox="0 0 48 48">
<path d="M6 10 H42 M6 24 H42 M6 38 H42" />
</svg>
</div>
<div class="search">Search this phone</div>
<div class="icon-btn kebab">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="4" r="3"></circle>
<circle cx="12" cy="12" r="3"></circle>
<circle cx="12" cy="20" r="3"></circle>
</svg>
</div>
</div>
<div class="separator"></div>
<!-- File list -->
<div class="list">
<div class="file-row">
<div class="doc-icon">
<svg viewBox="0 0 48 48">
<rect x="10" y="8" width="28" height="32" rx="4"></rect>
<path d="M28 8 L38 18"></path>
</svg>
</div>
<div class="file-info">
<div class="title">agents.txt</div>
<div class="meta">Nov 10, 1.15 kB, TXT document</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
<div class="file-row">
<div class="img-ph">[IMG: Fitbit screenshot]</div>
<div class="file-info">
<div class="title">fitbitshare_2123586381.PNG</div>
<div class="meta">Oct 30, 93.48 kB, PNG image</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
<div class="file-row">
<div class="img-ph">[IMG: Fitbit screenshot]</div>
<div class="file-info">
<div class="title">fitbitshare_2123101703.PNG</div>
<div class="meta">Oct 30, 92.77 kB, PNG image</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
<div class="file-row">
<div class="img-ph">[IMG: Fitbit screenshot]</div>
<div class="file-info">
<div class="title">fitbitshare_2123014230.PNG</div>
<div class="meta">Oct 30, 92.77 kB, PNG image</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
<div class="file-row">
<div class="img-ph">[IMG: Fitbit screenshot]</div>
<div class="file-info">
<div class="title">fitbitshare_2122912072.PNG</div>
<div class="meta">Oct 30, 93.30 kB, PNG image</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
<div class="file-row">
<div class="pdf-pill">PDF</div>
<div class="file-info">
<div class="title">Amsterdam-1.pdf</div>
<div class="meta">Oct 6, 8.45 MB, PDF document</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
<div class="file-row">
<div class="pdf-pill">PDF</div>
<div class="file-info">
<div class="title">Venice tour.pdf</div>
<div class="meta">Oct 6, 5.99 MB, PDF document</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
<div class="file-row">
<div class="pdf-pill">PDF</div>
<div class="file-info">
<div class="title">Amsterdam (1).pdf</div>
<div class="meta">Oct 6, 8.45 MB, PDF document</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
<div class="file-row">
<div class="img-ph">[IMG: Concert crowd]</div>
<div class="file-info">
<div class="title">tomorrow land image.png</div>
<div class="meta">Oct 6, 1.30 MB, PNG image</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
<div class="file-row">
<div class="img-ph">[IMG: City view]</div>
<div class="file-info">
<div class="title">vanice file.jpg</div>
<div class="meta">Oct 6, 125 kB, JPG image</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
<div class="file-row">
<div class="pdf-pill">PDF</div>
<div class="file-info">
<div class="title">Tomorrowland.pdf</div>
<div class="meta">Oct 6, 2.41 MB, PDF document</div>
</div>
<div class="actions">
<svg viewBox="0 0 48 48">
<path d="M6 18 L6 6 L18 6"></path>
<path d="M42 30 L42 42 L30 42"></path>
</svg>
</div>
</div>
</div>
<div class="gesture"></div>
</div>
</body>
</html> |