File size: 9,084 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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>New folder - Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #121212;
color: #EDEDED;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 108px;
padding: 0 28px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
color: #EAEAEA;
font-size: 34px;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
align-items: center;
gap: 18px;
font-size: 28px;
color: #EAEAEA;
}
.status-icon svg { width: 40px; height: 40px; }
/* App bar */
.app-bar {
position: absolute;
top: 108px;
left: 0;
width: 1080px;
height: 140px;
display: flex;
align-items: center;
gap: 16px;
padding: 0 20px 0 20px;
box-sizing: border-box;
}
.nav-btn {
width: 96px;
height: 96px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 48px;
color: #EDEDED;
}
.app-title {
font-size: 56px;
font-weight: 600;
color: #EDEDED;
}
/* Input field */
.form-area {
position: absolute;
top: 332px;
left: 54px;
width: 972px;
}
.outlined-field {
position: relative;
height: 162px;
border: 3px solid #8AB4F8;
border-radius: 20px;
box-sizing: border-box;
}
.outlined-field .label {
position: absolute;
top: -20px;
left: 24px;
padding: 0 12px;
background: #121212;
color: #8AB4F8;
font-size: 32px;
letter-spacing: .2px;
}
.outlined-field .cursor-line {
position: absolute;
left: 28px;
top: 50%;
transform: translateY(-50%);
width: 4px;
height: 70px;
background: #8AB4F8;
border-radius: 2px;
}
/* Actions */
.actions {
position: absolute;
top: 560px;
left: 0;
width: 1080px;
display: flex;
justify-content: center;
gap: 24px;
}
.btn {
height: 120px;
padding: 0 42px;
border-radius: 18px;
font-size: 40px;
font-weight: 600;
letter-spacing: .3px;
display: inline-flex;
align-items: center;
gap: 18px;
cursor: default;
transition: opacity .2s ease;
}
.btn-outline {
border: 2px solid #8AB4F8;
color: #8AB4F8;
background: transparent;
}
.btn-disabled {
border: 2px solid #3A3A3A;
background: #2A2A2A;
color: #8A8A8A;
}
.btn svg { width: 40px; height: 40px; }
/* Keyboard mock */
.keyboard {
position: absolute;
left: 0;
bottom: 42px;
width: 1080px;
height: 860px;
background: #1B1B1B;
border-top: 1px solid #2A2A2A;
box-sizing: border-box;
padding: 22px 18px 16px 18px;
}
.kb-toolbar {
display: flex;
gap: 28px;
align-items: center;
padding: 6px 10px 18px 10px;
color: #CFCFCF;
font-size: 30px;
}
.kb-dot {
width: 64px; height: 64px; border-radius: 16px;
background: #2E2E2E; display: inline-flex; align-items: center; justify-content: center;
}
.kb-rows { display: flex; flex-direction: column; gap: 18px; }
.kb-row {
display: flex;
gap: 14px;
padding: 0 6px;
}
.key {
flex: 1;
height: 120px;
background: #2C2C2C;
border-radius: 26px;
display: flex;
align-items: center;
justify-content: center;
color: #F5F5F5;
font-size: 44px;
box-shadow: inset 0 0 0 1px #383838;
}
.key.wide { flex: 1.5; }
.key.xwide { flex: 4.5; }
.key.icon { font-size: 34px; color: #DADADA; }
.key svg { width: 44px; height: 44px; }
/* Gesture pill */
.pill {
position: absolute;
bottom: 8px;
left: 50%;
transform: translateX(-50%);
width: 260px;
height: 12px;
background: #E0E0E0;
opacity: .6;
border-radius: 8px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">6:12</div>
<div class="status-right">
<span class="status-icon" aria-hidden="true">
<!-- Wi‑Fi -->
<svg viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2">
<path d="M2 8c5-4 15-4 20 0"/>
<path d="M5 11c3-3 11-3 14 0"/>
<path d="M8 14c2-2 6-2 8 0"/>
<circle cx="12" cy="18" r="1.6" fill="#FFFFFF" stroke="none"/>
</svg>
</span>
<span>100%</span>
<span class="status-icon" aria-hidden="true">
<!-- Battery -->
<svg viewBox="0 0 28 24" fill="none" stroke="#FFFFFF" stroke-width="2">
<rect x="1" y="6" width="20" height="12" rx="2"></rect>
<rect x="3" y="8" width="16" height="8" fill="#FFFFFF" stroke="none"></rect>
<rect x="22" y="9" width="4" height="6" rx="1" fill="#FFFFFF" stroke="none"></rect>
</svg>
</span>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<div class="nav-btn" aria-label="Back">
<svg viewBox="0 0 24 24" width="48" height="48" fill="none" stroke="#EDEDED" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round">
<path d="M15 18l-6-6 6-6"/>
</svg>
</div>
<div class="app-title">New folder</div>
</div>
<!-- Form -->
<div class="form-area">
<div class="outlined-field">
<div class="label">Folder name</div>
<div class="cursor-line" aria-hidden="true"></div>
</div>
</div>
<!-- Actions -->
<div class="actions">
<button class="btn btn-outline" aria-label="Cancel">
<svg viewBox="0 0 24 24" fill="none" stroke="#8AB4F8" stroke-width="2.4" stroke-linecap="round">
<path d="M5 5l14 14M19 5L5 19"/>
</svg>
Cancel
</button>
<button class="btn btn-disabled" aria-label="Create (disabled)" disabled>
<svg viewBox="0 0 24 24" fill="none" stroke="#8A8A8A" stroke-width="2.4" stroke-linecap="round">
<path d="M12 5v14M5 12h14"/>
</svg>
Create
</button>
</div>
<!-- Keyboard -->
<div class="keyboard" role="group" aria-label="On-screen keyboard">
<div class="kb-toolbar">
<div class="kb-dot">⬛</div>
<div class="kb-dot">😊</div>
<div>GIF</div>
<div class="kb-dot">⚙️</div>
<div class="kb-dot">G⇄</div>
<div class="kb-dot">🎨</div>
<div class="kb-dot">
<svg viewBox="0 0 24 24" fill="none" stroke="#DADADA" stroke-width="2" stroke-linecap="round">
<path d="M12 5v14M5 12h14"/>
</svg>
</div>
</div>
<div class="kb-rows">
<div class="kb-row">
<div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div>
<div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div>
<div class="key">o</div><div class="key">p</div>
</div>
<div class="kb-row" style="padding: 0 50px;">
<div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div>
<div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
</div>
<div class="kb-row">
<div class="key wide icon" aria-label="Shift">
<svg viewBox="0 0 24 24" fill="none" stroke="#DADADA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 4l7 7h-4v7H9v-7H5l7-7z"/>
</svg>
</div>
<div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div>
<div class="key">b</div><div class="key">n</div><div class="key">m</div>
<div class="key wide icon" aria-label="Backspace">
<svg viewBox="0 0 24 24" fill="none" stroke="#DADADA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M22 6H9L3 12l6 6h13V6z"/>
<path d="M12 9l6 6M18 9l-6 6"/>
</svg>
</div>
</div>
<div class="kb-row">
<div class="key wide">?123</div>
<div class="key">,</div>
<div class="key icon">
<svg viewBox="0 0 24 24" fill="none" stroke="#DADADA" stroke-width="2" stroke-linecap="round">
<path d="M12 5a5 5 0 0 0-5 5v3l-2 2v1h14v-1l-2-2v-3a5 5 0 0 0-5-5z"/>
</svg>
</div>
<div class="key xwide">space</div>
<div class="key">.</div>
<div class="key wide icon" aria-label="Enter">
<svg viewBox="0 0 24 24" fill="none" stroke="#DADADA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M19 7v6a2 2 0 0 1-2 2H6"/>
<path d="M10 17l-4-4 4-4"/>
</svg>
</div>
</div>
</div>
</div>
<div class="pill" aria-hidden="true"></div>
</div>
</body>
</html> |