AndroidCode / code /10135 /10135_4.html
yhzheng1031's picture
Add files using upload-large-folder tool
c32f9a6 verified
raw
history blame
5.88 kB
<html>
<head>
<meta charset="UTF-8">
<title>Collections - Choose a location</title>
<style>
body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target{
width:1080px;
height:2400px;
position:relative;
overflow:hidden;
background:#F2F2EF;
color:#222;
}
/* Status bar */
.status-bar{
position:absolute; top:0; left:0; right:0;
height:88px;
padding:0 40px;
display:flex; align-items:center; justify-content:space-between;
color:#616161; font-size:34px; letter-spacing:0.5px;
}
.status-icons{ display:flex; align-items:center; gap:28px; }
.icon-wifi, .icon-battery{
width:44px; height:28px;
position:relative;
}
.icon-wifi:before{
content:""; position:absolute; left:0; right:0; top:4px; bottom:4px;
border:3px solid #616161; border-radius:18px 18px 0 0; border-bottom:none;
}
.icon-battery{
border:3px solid #616161; border-radius:6px;
}
.icon-battery:after{
content:""; position:absolute; right:-10px; top:6px; width:8px; height:12px; background:#616161; border-radius:2px;
}
/* Top app header */
.app-header{
position:absolute; left:0; right:0; top:88px;
padding:36px 40px 30px 40px;
background:#EEEFEA;
box-sizing:border-box;
}
.header-row{
display:flex; align-items:center; justify-content:space-between;
}
.left-group{ display:flex; align-items:center; gap:26px; }
.title-block{ margin-left:72px; }
.title{ font-size:64px; font-weight:700; color:#222; }
.subtitle{ margin-top:10px; font-size:44px; color:#4B4B4B; }
.icon-btn{ width:70px; height:70px; display:flex; align-items:center; justify-content:center; }
.icon{ width:56px; height:56px; }
/* Content area */
.content{
position:absolute; top:300px; left:0; right:0; bottom:220px;
background:#FFFFFF;
padding:40px;
box-sizing:border-box;
}
.list-header{
display:flex; align-items:center; justify-content:space-between;
color:#5A5A5A; font-size:40px;
padding:8px 8px 24px 8px;
}
.sort-icon{ width:54px; height:54px; position:relative; }
.sort-icon span{
position:absolute; left:8px; right:8px; height:6px; background:#5A5A5A; border-radius:3px;
}
.sort-icon span:nth-child(1){ top:10px; }
.sort-icon span:nth-child(2){ top:22px; }
.sort-icon span:nth-child(3){ top:34px; }
/* File tile */
.file-item{
margin-top:36px;
padding-left:14px;
}
.thumb-wrap{
display:inline-block;
background:#F5F7FD;
border-radius:28px;
padding:22px;
}
.thumb{
width:520px; height:360px;
background:#E0E0E0;
border:1px solid #BDBDBD;
border-radius:18px;
display:flex; align-items:center; justify-content:center;
color:#757575; font-size:34px; text-align:center;
box-shadow:0 2px 6px rgba(0,0,0,0.08);
}
.file-meta{
margin-top:24px;
display:flex; align-items:flex-start; gap:22px;
padding-left:20px;
}
.badge{
background:#F36C63; color:#fff; font-weight:700;
padding:10px 18px; border-radius:12px; font-size:30px; line-height:1;
}
.file-name{
font-size:44px; color:#333; line-height:1.25;
}
/* Bottom action bar */
.bottom-bar{
position:absolute; left:0; right:0; bottom:0;
background:#EEEFEA;
height:220px;
display:flex; align-items:center; justify-content:space-between;
padding:0 64px;
box-sizing:border-box;
}
.action{
font-size:52px; color:#4E6B2E; /* greenish */
}
/* Gesture handle */
.gesture{
position:absolute; bottom:18px; left:50%; transform:translateX(-50%);
width:360px; height:10px; background:#8D8D8D; border-radius:6px; opacity:0.7;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-time">6:19</div>
<div class="status-icons">
<div class="icon-wifi"></div>
<div class="icon-battery"></div>
</div>
</div>
<!-- Header -->
<div class="app-header">
<div class="header-row">
<div class="left-group">
<!-- Back arrow -->
<div class="icon-btn">
<svg class="icon" viewBox="0 0 24 24">
<path d="M15 4 L5 12 L15 20" stroke="#333" stroke-width="2.8" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="6" y1="12" x2="21" y2="12" stroke="#333" stroke-width="2.8" stroke-linecap="round"/>
</svg>
</div>
<div class="title-block">
<div class="title">Collections</div>
<div class="subtitle">Choose a location</div>
</div>
</div>
<!-- Folder plus icon -->
<div class="icon-btn">
<svg class="icon" viewBox="0 0 24 24">
<path d="M3 7h7l2 2h9v10H3z" fill="none" stroke="#333" stroke-width="2" stroke-linejoin="round"/>
<rect x="3" y="7" width="7" height="0.01" fill="none"/>
<line x1="12" y1="13" x2="12" y2="19" stroke="#333" stroke-width="2" stroke-linecap="round"/>
<line x1="9" y1="16" x2="15" y2="16" stroke="#333" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="list-header">
<div>Name ↑</div>
<div class="sort-icon" aria-hidden="true">
<span></span><span></span><span></span>
</div>
</div>
<div class="file-item">
<div class="thumb-wrap">
<div class="thumb">[IMG: PDF cover thumbnail]</div>
</div>
<div class="file-meta">
<div class="badge">PDF</div>
<div class="file-name">
typhoon-mc<br/>m-obooko....
</div>
</div>
</div>
</div>
<!-- Bottom action bar -->
<div class="bottom-bar">
<div class="action">Cancel</div>
<div class="action">Select</div>
</div>
<div class="gesture"></div>
</div>
</body>
</html>