File size: 6,009 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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Select images - Gallery</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: #000000;
color: #FFFFFF;
}
/* Status bar */
.status-bar {
height: 96px;
background: #000;
display: flex;
align-items: center;
padding: 0 24px;
box-sizing: border-box;
font-size: 36px;
letter-spacing: 0.5px;
}
.status-left { flex: 1; color: #fff; }
.status-right { display: flex; align-items: center; gap: 22px; }
.icon-mini {
width: 32px; height: 32px;
display: inline-block;
}
/* App bar */
.app-bar {
height: 140px;
background: #2b2b2b;
display: flex;
align-items: center;
padding: 0 24px;
box-sizing: border-box;
border-bottom: 1px solid #1f1f1f;
}
.app-title {
font-size: 56px;
font-weight: 600;
margin-left: 18px;
color: #ffffff;
}
.spacer { flex: 1; }
/* Gallery grid */
.gallery {
position: absolute;
top: 96px; /* status bar */
top: calc(96px + 140px);
left: 0; right: 0;
bottom: 110px; /* gesture area */
overflow: hidden;
background: #111111;
}
.grid {
height: 100%;
padding: 16px;
box-sizing: border-box;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 344px;
gap: 12px;
}
.tile {
position: relative;
background: #E0E0E0;
border: 1px solid #BDBDBD;
color: #757575;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 28px;
border-radius: 4px;
user-select: none;
}
.badge {
position: absolute;
top: 12px;
right: 12px;
width: 56px;
height: 56px;
background: rgba(0,0,0,0.75);
color: #fff;
border-radius: 50%;
font-size: 32px;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid #111;
}
/* Floating action button */
.fab {
position: absolute;
right: 34px;
bottom: 190px;
width: 132px;
height: 132px;
background: #1e88e5;
color: #fff;
border-radius: 50%;
box-shadow: 0 8px 24px rgba(0,0,0,0.5);
display: flex;
align-items: center;
justify-content: center;
}
.fab-badge {
position: absolute;
top: -4px;
right: -4px;
width: 56px;
height: 56px;
background: rgba(0,0,0,0.85);
color: #fff;
border-radius: 50%;
font-size: 30px;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid #1e88e5;
}
/* Gesture bar */
.gesture {
position: absolute;
bottom: 28px;
left: 50%;
transform: translateX(-50%);
width: 400px;
height: 12px;
background: #6b6b6b;
border-radius: 10px;
opacity: 0.8;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">8:56</div>
<div class="status-right">
<!-- simple status icons -->
<svg class="icon-mini" viewBox="0 0 24 24" fill="#fff">
<path d="M3 12l7-7v4h11v6H10v4z"></path>
</svg>
<svg class="icon-mini" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
<path d="M2 10a10 10 0 0 1 20 0"></path>
<path d="M6 10a6 6 0 0 1 12 0"></path>
<circle cx="12" cy="16" r="1.6" fill="#fff"></circle>
</svg>
<svg class="icon-mini" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
<rect x="3" y="6" width="18" height="12" rx="2"></rect>
<rect x="19" y="10" width="2" height="4" fill="#fff" stroke="none"></rect>
</svg>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<svg width="52" height="52" viewBox="0 0 24 24">
<path d="M15 4L7 12l8 8" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<div class="app-title">Select images</div>
<div class="spacer"></div>
<svg width="56" height="56" viewBox="0 0 24 24">
<path d="M3 7h8l2 2h8v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7z" fill="#bdbdbd"></path>
<rect x="3" y="5" width="8" height="4" fill="#d0d0d0"></rect>
</svg>
</div>
<!-- Gallery -->
<div class="gallery">
<div class="grid">
<div class="tile">
[IMG: Office desk photo]
<div class="badge">1</div>
</div>
<div class="tile">[IMG: Office desk photo]</div>
<div class="tile">[IMG: Hands on laptop]</div>
<div class="tile">[IMG: Desk cables close-up]</div>
<div class="tile">[IMG: Laptop and cables]</div>
<div class="tile">[IMG: Desk with earphones]</div>
<div class="tile">[IMG: Spreadsheet on laptop]</div>
<div class="tile">[IMG: Typing on laptop]</div>
<div class="tile">[IMG: Cable and card on desk]</div>
<div class="tile">[IMG: Legs and shoes under desk]</div>
<div class="tile">[IMG: Bag and cables under table]</div>
<div class="tile">[IMG: Shoes and chair wheels]</div>
<div class="tile">[IMG: Under-desk bag and power]</div>
<div class="tile">[IMG: Desk cables close-up]</div>
<div class="tile">[IMG: Feet and floor near desk]</div>
<div class="tile">[IMG: Under-desk power]</div>
<div class="tile">[IMG: Earphones on white desk]</div>
<div class="tile">[IMG: Laptop with spreadsheet]</div>
</div>
</div>
<!-- Floating action button with count -->
<div class="fab">
<svg width="72" height="72" viewBox="0 0 24 24">
<path d="M8 4l8 8-8 8" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<div class="fab-badge">1</div>
</div>
<!-- Gesture bar -->
<div class="gesture"></div>
</div>
</body>
</html> |