AndroidCode / code /10094 /10094_3.html
yhzheng1031's picture
Add files using upload-large-folder tool
5501681 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Files - Dark UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #121212;
color: #EDEDED;
font-family: Arial, Helvetica, sans-serif;
}
/* Status bar */
.status-bar {
height: 96px;
padding: 18px 32px;
display: flex;
justify-content: space-between;
align-items: center;
color: #FFFFFF;
font-size: 36px;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
align-items: center;
gap: 26px;
}
.status-icon svg { width: 40px; height: 40px; fill: none; stroke: #FFFFFF; stroke-width: 3; }
/* Search bar */
.searchbar {
margin: 18px 28px 10px;
background: #1E1E1E;
border: 1px solid #2A2A2A;
border-radius: 24px;
height: 108px;
display: flex;
align-items: center;
padding: 0 24px;
gap: 22px;
color: #CFCFCF;
font-size: 36px;
}
.searchbar .menu, .searchbar .more {
width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
color: #BDBDBD;
}
.searchbar .placeholder { flex: 1; color: #BEBEBE; }
/* Chips */
.chips {
display: flex;
gap: 18px;
padding: 14px 28px 0;
}
.chip {
display: inline-flex;
align-items: center;
gap: 14px;
padding: 20px 26px;
border-radius: 18px;
border: 1px solid #3A3A3A;
background: #1A1A1A;
color: #D7D7D7;
font-size: 30px;
}
.chip .ico {
width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
/* Section title small */
.section-note {
margin: 28px 32px 12px;
color: #9E9E9E;
font-size: 26px;
letter-spacing: 2px;
}
/* Apps row */
.apps-row {
display: flex;
align-items: flex-start;
gap: 42px;
padding: 0 32px;
}
.app {
width: 180px;
text-align: center;
color: #DADADA;
font-size: 28px;
}
.app .circle {
width: 110px; height: 110px; border-radius: 55px; margin: 0 auto 12px; background: #1F1F1F; border: 1px solid #3A3A3A;
display: flex; align-items: center; justify-content: center;
}
.apps-row .grid-toggle {
margin-left: auto;
width: 64px; height: 64px; border: 1px solid #3A3A3A; border-radius: 12px; display: flex; align-items: center; justify-content: center;
background: #1A1A1A;
}
/* Recent files header */
.recent-title {
margin: 36px 32px 10px;
font-size: 34px;
color: #EDEDED;
}
/* File list */
.file-list { padding: 0 20px; }
.file-item {
display: flex;
align-items: center;
gap: 24px;
padding: 24px 12px;
border-top: 1px solid #2A2A2A;
}
.file-icon {
width: 64px; height: 84px; border: 3px solid #7CD6E8; border-radius: 10px;
}
.file-info { flex: 1; }
.file-name { font-size: 32px; color: #F0F0F0; margin-bottom: 6px; }
.file-meta { font-size: 26px; color: #B0B0B0; }
.file-actions {
display: flex; flex-direction: column; gap: 14px; margin-right: 8px;
}
.action-btn {
width: 56px; height: 56px; border: 1px solid #3A3A3A; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: #1C1C1C;
}
.divider {
margin: 16px 32px;
border-top: 1px solid #2A2A2A;
}
/* Image row placeholder */
.thumb {
width: 108px; height: 108px;
background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 22px; text-align: center;
border-radius: 8px;
}
.underline { text-decoration: underline; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>9:08</div>
<div class="status-right">
<div class="status-icon">
<!-- Do Not Disturb icon -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" stroke="#FFFFFF" fill="none"/>
<line x1="7" y1="12" x2="17" y2="12" stroke="#FFFFFF"/>
</svg>
</div>
<div class="status-icon">
<!-- Signal bars simplified -->
<svg viewBox="0 0 24 24">
<rect x="3" y="13" width="3" height="8" fill="#FFFFFF"/>
<rect x="8" y="10" width="3" height="11" fill="#FFFFFF" opacity="0.75"/>
<rect x="13" y="7" width="3" height="14" fill="#FFFFFF" opacity="0.6"/>
<rect x="18" y="4" width="3" height="17" fill="#FFFFFF" opacity="0.45"/>
</svg>
</div>
<div style="font-size:28px; color:#DADADA;">100%</div>
<div class="status-icon">
<!-- Battery icon -->
<svg viewBox="0 0 28 24">
<rect x="2" y="5" width="22" height="14" rx="2" ry="2" stroke="#FFFFFF"/>
<rect x="24" y="9" width="3" height="6" fill="#FFFFFF"/>
<rect x="4" y="7" width="18" height="10" fill="#FFFFFF"/>
</svg>
</div>
</div>
</div>
<!-- Search bar -->
<div class="searchbar">
<div class="menu">
<svg width="48" height="48" viewBox="0 0 24 24">
<rect x="3" y="6" width="18" height="2" fill="#DADADA"/>
<rect x="3" y="11" width="18" height="2" fill="#DADADA"/>
<rect x="3" y="16" width="18" height="2" fill="#DADADA"/>
</svg>
</div>
<div class="placeholder">Search this phone</div>
<div class="more">
<svg width="36" height="36" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2" fill="#BDBDBD"/>
<circle cx="12" cy="12" r="2" fill="#BDBDBD"/>
<circle cx="12" cy="19" r="2" fill="#BDBDBD"/>
</svg>
</div>
</div>
<!-- Chips -->
<div class="chips">
<div class="chip">
<div class="ico" style="background:#2A1E23;">
<svg width="32" height="32" viewBox="0 0 24 24">
<rect x="4" y="6" width="16" height="12" stroke="#FF7D9E" fill="none"/>
<polyline points="4,6 12,12 20,6" fill="none" stroke="#FF7D9E"/>
</svg>
</div>
<span>Images</span>
</div>
<div class="chip">
<div class="ico" style="background:#231C2E;">
<svg width="32" height="32" viewBox="0 0 24 24">
<path d="M8 5v11.5a3.5 3.5 0 1 0 2-3.1V5" stroke="#B28BFF" fill="none"/>
</svg>
</div>
<span>Audio</span>
</div>
<div class="chip">
<div class="ico" style="background:#16261D;">
<svg width="32" height="32" viewBox="0 0 24 24">
<rect x="5" y="6" width="14" height="12" stroke="#7CF5A5" fill="none"/>
<polygon points="10,9 15,12 10,15" fill="#7CF5A5"/>
</svg>
</div>
<span>Videos</span>
</div>
<div class="chip">
<div class="ico" style="background:#14282A;">
<svg width="32" height="32" viewBox="0 0 24 24">
<rect x="6" y="4" width="12" height="16" stroke="#78E6E6" fill="none"/>
<line x1="8" y1="9" x2="16" y2="9" stroke="#78E6E6"/>
<line x1="8" y1="12" x2="16" y2="12" stroke="#78E6E6"/>
</svg>
</div>
<span>Documents</span>
</div>
</div>
<!-- Browse files in other apps -->
<div class="section-note">BROWSE FILES IN OTHER APPS</div>
<div class="apps-row">
<div class="app">
<div class="circle">
<svg width="64" height="64" viewBox="0 0 24 24">
<circle cx="12" cy="9" r="4" stroke="#DADADA" fill="none"/>
<rect x="5" y="14" width="14" height="7" rx="3" stroke="#DADADA" fill="none"/>
</svg>
</div>
<div>Bug reports</div>
</div>
<div class="app">
<div class="circle">
<svg width="64" height="64" viewBox="0 0 24 24">
<polygon points="12,4 20,18 4,18" fill="#39A853"/>
<polygon points="12,4 20,18 4,18" fill="none" stroke="#DADADA"/>
</svg>
</div>
<div>Drive</div>
<div style="color:#8D8D8D; font-size:22px;">dbwscratch.test.i...</div>
</div>
<div class="app">
<div class="circle">
<svg width="64" height="64" viewBox="0 0 24 24">
<polygon points="12,4 20,18 4,18" fill="#39A853"/>
<polygon points="12,4 20,18 4,18" fill="none" stroke="#DADADA"/>
</svg>
</div>
<div>Drive</div>
<div style="color:#8D8D8D; font-size:22px;">fabioteixeira0012...</div>
</div>
<div class="app">
<div class="circle">
<svg width="64" height="64" viewBox="0 0 24 24">
<polygon points="12,3 19,10 12,17 5,10" fill="#3D8BFF"/>
<polygon points="12,3 19,10 12,17 5,10" fill="none" stroke="#DADADA"/>
</svg>
</div>
<div>Dropbox</div>
</div>
<div class="grid-toggle">
<svg width="40" height="40" viewBox="0 0 24 24">
<rect x="3" y="3" width="7" height="7" fill="#DADADA"/>
<rect x="14" y="3" width="7" height="7" fill="#DADADA"/>
<rect x="3" y="14" width="7" height="7" fill="#DADADA"/>
<rect x="14" y="14" width="7" height="7" fill="#DADADA"/>
</svg>
</div>
</div>
<!-- Recent files -->
<div class="recent-title">Recent files</div>
<div class="file-list">
<div class="file-item">
<div class="file-icon"></div>
<div class="file-info">
<div class="file-name">screenshot.txt</div>
<div class="file-meta">Nov 23, 567 kB, TXT document</div>
</div>
<div class="file-actions">
<div class="action-btn">
<!-- expand icon -->
<svg width="28" height="28" viewBox="0 0 24 24">
<rect x="4" y="4" width="8" height="8" stroke="#DADADA" fill="none"/>
<rect x="12" y="12" width="8" height="8" stroke="#DADADA" fill="none"/>
</svg>
</div>
<div class="action-btn">
<!-- open/external -->
<svg width="28" height="28" viewBox="0 0 24 24">
<path d="M14 4h6v6" stroke="#DADADA" fill="none"/>
<path d="M20 4l-9 9" stroke="#DADADA" fill="none"/>
<rect x="4" y="10" width="10" height="10" stroke="#DADADA" fill="none"/>
</svg>
</div>
</div>
</div>
<div class="divider"></div>
<div class="file-item">
<div class="file-icon"></div>
<div class="file-info">
<div class="file-name">actuation_result.txt</div>
<div class="file-meta">Nov 23, 8 B, TXT document</div>
</div>
<div class="file-actions">
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<rect x="4" y="4" width="8" height="8" stroke="#DADADA" fill="none"/>
<rect x="12" y="12" width="8" height="8" stroke="#DADADA" fill="none"/>
</svg>
</div>
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<path d="M14 4h6v6" stroke="#DADADA" fill="none"/>
<path d="M20 4l-9 9" stroke="#DADADA" fill="none"/>
<rect x="4" y="10" width="10" height="10" stroke="#DADADA" fill="none"/>
</svg>
</div>
</div>
</div>
<div class="file-item">
<div class="file-icon"></div>
<div class="file-info">
<div class="file-name">agents.txt</div>
<div class="file-meta">Nov 23, 1.15 kB, TXT document</div>
</div>
<div class="file-actions">
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<rect x="4" y="4" width="8" height="8" stroke="#DADADA" fill="none"/>
<rect x="12" y="12" width="8" height="8" stroke="#DADADA" fill="none"/>
</svg>
</div>
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<path d="M14 4h6v6" stroke="#DADADA" fill="none"/>
<path d="M20 4l-9 9" stroke="#DADADA" fill="none"/>
<rect x="4" y="10" width="10" height="10" stroke="#DADADA" fill="none"/>
</svg>
</div>
</div>
</div>
<div class="file-item">
<div class="file-icon"></div>
<div class="file-info">
<div class="file-name">os_info.txt</div>
<div class="file-meta">Nov 23, 32 B, TXT document</div>
</div>
<div class="file-actions">
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<rect x="4" y="4" width="8" height="8" stroke="#DADADA" fill="none"/>
<rect x="12" y="12" width="8" height="8" stroke="#DADADA" fill="none"/>
</svg>
</div>
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<path d="M14 4h6v6" stroke="#DADADA" fill="none"/>
<path d="M20 4l-9 9" stroke="#DADADA" fill="none"/>
<rect x="4" y="10" width="10" height="10" stroke="#DADADA" fill="none"/>
</svg>
</div>
</div>
</div>
<div class="file-item">
<div class="file-icon"></div>
<div class="file-info">
<div class="file-name">Diy tool kit (1)</div>
<div class="file-meta">Nov 22, 12.59 MB, BIN file</div>
</div>
<div class="file-actions">
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<rect x="4" y="4" width="8" height="8" stroke="#DADADA" fill="none"/>
<rect x="12" y="12" width="8" height="8" stroke="#DADADA" fill="none"/>
</svg>
</div>
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<path d="M14 4h6v6" stroke="#DADADA" fill="none"/>
<path d="M20 4l-9 9" stroke="#DADADA" fill="none"/>
<rect x="4" y="10" width="10" height="10" stroke="#DADADA" fill="none"/>
</svg>
</div>
</div>
</div>
<div class="file-item">
<div class="file-icon"></div>
<div class="file-info">
<div class="file-name">Diy tool kit (1).bin</div>
<div class="file-meta">Nov 22, 12.59 MB, BIN file</div>
</div>
<div class="file-actions">
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<rect x="4" y="4" width="8" height="8" stroke="#DADADA" fill="none"/>
<rect x="12" y="12" width="8" height="8" stroke="#DADADA" fill="none"/>
</svg>
</div>
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<path d="M14 4h6v6" stroke="#DADADA" fill="none"/>
<path d="M20 4l-9 9" stroke="#DADADA" fill="none"/>
<rect x="4" y="10" width="10" height="10" stroke="#DADADA" fill="none"/>
</svg>
</div>
</div>
</div>
<div class="file-item">
<div class="file-icon"></div>
<div class="file-info">
<div class="file-name">Diy tool kit.bin</div>
<div class="file-meta">Nov 22, 12.59 MB, BIN file</div>
</div>
<div class="file-actions">
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<rect x="4" y="4" width="8" height="8" stroke="#DADADA" fill="none"/>
<rect x="12" y="12" width="8" height="8" stroke="#DADADA" fill="none"/>
</svg>
</div>
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<path d="M14 4h6v6" stroke="#DADADA" fill="none"/>
<path d="M20 4l-9 9" stroke="#DADADA" fill="none"/>
<rect x="4" y="10" width="10" height="10" stroke="#DADADA" fill="none"/>
</svg>
</div>
</div>
</div>
<!-- Image preview row -->
<div class="file-item">
<div class="thumb">[IMG: Fitbit share]</div>
<div class="file-info">
<div class="file-name underline">fitbitshare_1272361138.PNG</div>
<div class="file-meta">Nov 21, PNG image</div>
</div>
<div class="file-actions">
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<rect x="4" y="4" width="8" height="8" stroke="#DADADA" fill="none"/>
<rect x="12" y="12" width="8" height="8" stroke="#DADADA" fill="none"/>
</svg>
</div>
<div class="action-btn">
<svg width="28" height="28" viewBox="0 0 24 24">
<path d="M14 4h6v6" stroke="#DADADA" fill="none"/>
<path d="M20 4l-9 9" stroke="#DADADA" fill="none"/>
<rect x="4" y="10" width="10" height="10" stroke="#DADADA" fill="none"/>
</svg>
</div>
</div>
</div>
</div>
</div>
</body>
</html>