File size: 5,878 Bytes
c32f9a6 | 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 | <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> |