File size: 5,790 Bytes
98687c3 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Select images - Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, Helvetica, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #0b0b0b;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
background: #000;
color: #fff;
display: flex;
align-items: center;
padding: 0 24px;
box-sizing: border-box;
}
.sb-left { font-size: 42px; font-weight: 500; }
.sb-center {
display: flex;
gap: 26px;
margin-left: 40px;
}
.sb-right {
margin-left: auto;
display: flex;
align-items: center;
gap: 24px;
}
.icon {
width: 44px;
height: 44px;
}
/* App bar */
.app-bar {
position: absolute;
top: 100px;
left: 0;
width: 100%;
height: 120px;
background: #2c2c2c;
color: #fff;
display: flex;
align-items: center;
box-sizing: border-box;
padding: 0 24px;
}
.app-title {
font-size: 52px;
font-weight: 500;
margin-left: 18px;
letter-spacing: 0.2px;
}
.app-actions {
margin-left: auto;
display: flex;
align-items: center;
gap: 24px;
}
/* Grid */
.grid {
position: absolute;
top: 220px; /* status + app bar */
left: 0;
width: 100%;
box-sizing: border-box;
padding: 16px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 330px;
gap: 12px;
}
.thumb {
background: #E0E0E0;
border: 1px solid #BDBDBD;
color: #757575;
display: flex;
justify-content: center;
align-items: center;
font-size: 32px;
text-align: center;
border-radius: 6px;
}
/* Gesture bar */
.gesture {
position: absolute;
bottom: 28px;
left: 50%;
transform: translateX(-50%);
width: 420px;
height: 12px;
background: #CFCFCF;
border-radius: 12px;
opacity: 0.86;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="sb-left">8:55</div>
<div class="sb-center">
<!-- Simple app icons -->
<svg class="icon" viewBox="0 0 24 24">
<rect x="3" y="6" width="18" height="12" fill="none" stroke="#fff" stroke-width="2"></rect>
<polygon points="10,9 16,12 10,15" fill="#fff"></polygon>
</svg>
<svg class="icon" viewBox="0 0 24 24">
<rect x="3" y="5" width="18" height="14" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"></rect>
<polyline points="3,7 12,13 21,7" fill="none" stroke="#fff" stroke-width="2"></polyline>
</svg>
<svg class="icon" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" fill="none" stroke="#fff" stroke-width="2"></circle>
<circle cx="12" cy="12" r="4" fill="#fff"></circle>
</svg>
<svg class="icon" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="3" fill="#fff"></circle>
</svg>
</div>
<div class="sb-right">
<svg class="icon" viewBox="0 0 24 24">
<path d="M2 16c3-3 7-3 10 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"></path>
<path d="M6 12c2-2 6-2 8 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"></path>
<path d="M10 8c1-1 3-1 4 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<svg class="icon" viewBox="0 0 24 24">
<rect x="2" y="7" width="18" height="10" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"></rect>
<rect x="4" y="9" width="12" height="6" fill="#fff"></rect>
<rect x="20" y="10" width="2" height="4" fill="#fff"></rect>
</svg>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<svg class="icon" viewBox="0 0 24 24">
<path d="M15 5 L7 12 L15 19" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<div class="app-title">Select images</div>
<div class="app-actions">
<svg class="icon" viewBox="0 0 24 24">
<path d="M3 6h7l2 3h9v9H3z" fill="none" stroke="#fff" stroke-width="2" stroke-linejoin="round"></path>
</svg>
</div>
</div>
<!-- Grid of image thumbnails -->
<div class="grid">
<div class="thumb">[IMG: Office desk photo]</div>
<div class="thumb">[IMG: Office desk with cables]</div>
<div class="thumb">[IMG: Hands typing on laptop]</div>
<div class="thumb">[IMG: Office desk close-up]</div>
<div class="thumb">[IMG: Desk adapters and wires]</div>
<div class="thumb">[IMG: Laptop screen on desk]</div>
<div class="thumb">[IMG: Laptop and hands]</div>
<div class="thumb">[IMG: Card and cable on desk]</div>
<div class="thumb">[IMG: Desk with earphones]</div>
<div class="thumb">[IMG: People at office desk]</div>
<div class="thumb">[IMG: Hands near trackpad]</div>
<div class="thumb">[IMG: Cables and adapter]</div>
<div class="thumb">[IMG: Under desk - shoes]</div>
<div class="thumb">[IMG: Under desk - bag and adapter]</div>
<div class="thumb">[IMG: Under desk - shoes]</div>
<div class="thumb">[IMG: Adapter and cables on desk]</div>
<div class="thumb">[IMG: Desk cables and card]</div>
<div class="thumb">[IMG: Legs and shoes near desk]</div>
<div class="thumb">[IMG: Under desk - bag and adapter]</div>
<div class="thumb">[IMG: Desk with laptop edge]</div>
<div class="thumb">[IMG: Office desk photo]</div>
</div>
<!-- Gesture bar -->
<div class="gesture"></div>
</div>
</body>
</html> |