File size: 10,100 Bytes
ff1f000 | 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 | <html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Calendar Event - Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #141218; /* dark, purple-tinted */
color: #ECE8F4;
}
/* Status bar */
.status-bar {
height: 110px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #EDE7F6;
font-size: 40px;
letter-spacing: 1px;
}
.status-right {
display: flex;
gap: 26px;
align-items: center;
opacity: 0.85;
}
.icon {
width: 44px; height: 44px;
display: inline-flex; align-items: center; justify-content: center;
}
.icon svg { width: 100%; height: 100%; fill: #EDE7F6; }
/* Header + title */
.header {
padding: 10px 34px 22px 34px;
border-bottom: 1px solid #2A2432;
}
.nav-row {
height: 110px;
display: flex;
align-items: center;
justify-content: space-between;
}
.close-btn {
width: 86px; height: 86px; border-radius: 50%;
background: transparent; border: none; color: #EDE7F6; padding: 0;
}
.close-btn svg { width: 86px; height: 86px; }
.save-pill {
background: #D5B8F6;
color: #1B1024;
padding: 22px 46px;
border-radius: 42px;
font-weight: bold;
font-size: 40px;
}
.title-input {
margin-top: 12px;
width: 100%;
background: transparent;
border: none;
color: #F4EEFF;
font-size: 64px;
outline: none;
caret-color: #BFA4FF;
}
.title-input::placeholder { color: #D4CBE7; opacity: 0.9; }
/* Account row */
.account-row {
display: flex;
align-items: center;
gap: 26px;
padding: 28px 36px;
border-bottom: 1px solid #2A2432;
}
.avatar {
width: 86px; height: 86px; border-radius: 50%;
background: #C46E86; display: flex; align-items: center; justify-content: center;
color: #1A0F1F; font-weight: 800; font-size: 44px;
}
.account-text { line-height: 1.2; }
.account-line {
display: flex; align-items: center; gap: 14px; font-size: 40px; color: #EDE7F6;
}
.blue-dot {
width: 20px; height: 20px; background: #4FB3FF; border-radius: 50%;
box-shadow: 0 0 0 6px rgba(79,179,255,0.15);
display: inline-block;
}
.email {
font-size: 34px; color: #B8ABC9; margin-top: 6px;
}
/* Settings list */
.list { }
.row {
display: flex;
align-items: center;
padding: 34px 36px;
border-bottom: 1px solid #2A2432;
min-height: 120px;
}
.row .left {
width: 70px;
display: flex;
justify-content: center;
align-items: center;
opacity: 0.95;
}
.row .label {
font-size: 42px; color: #EFE7FF;
}
.row .right {
margin-left: auto;
font-size: 40px;
color: #EDE7F6;
opacity: 0.9;
}
/* Toggle */
.toggle {
width: 170px; height: 82px; background: #3A3340; border-radius: 42px; position: relative;
}
.toggle span {
position: absolute; top: 9px; left: 10px;
width: 64px; height: 64px; background: #8A809B; border-radius: 50%;
}
.toggle.on { background: #7A5AF8; }
.toggle.on span { left: 96px; background: #FFFFFF; }
/* Keyboard mock */
.keyboard {
position: absolute; left: 0; right: 0; bottom: 0;
height: 980px;
background: #19161E;
border-top: 1px solid #2A2432;
box-shadow: 0 -10px 30px rgba(0,0,0,0.35) inset;
padding: 24px 22px 110px;
}
.kb-top {
display: flex; justify-content: space-between; align-items: center;
padding: 6px 8px 22px;
}
.kb-top .slot {
width: 85px; height: 85px; border-radius: 18px; background: #231F29;
display:flex; align-items:center; justify-content:center; color:#C9BED8; font-size:32px;
border: 1px solid #2B2733;
}
.keys {
display: grid;
grid-template-columns: repeat(10, 1fr);
gap: 14px;
}
.key {
background: #221E28;
border: 1px solid #2D2835;
height: 120px;
border-radius: 22px;
display:flex; align-items:center; justify-content:center;
color:#F0E9FF; font-size: 44px; font-weight: 600;
}
.row-gap { height: 18px; }
.keys2 { grid-template-columns: repeat(9, 1fr); }
.keys3 { grid-template-columns: repeat(8, 1fr); }
.space-row {
display: grid;
grid-template-columns: 160px 1fr 160px 160px;
gap: 14px; margin-top: 14px;
}
.space { height: 120px; background: #221E28; border:1px solid #2D2835; border-radius: 22px; }
.space.long { }
.space.mid {
grid-column: 2;
}
/* Home indicator */
.home-indicator {
position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
width: 360px; height: 10px; border-radius: 8px; background: #DDD3EF; opacity: 0.75;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="time">8:37</div>
<div class="status-right">
<div class="icon" title="signal">
<svg viewBox="0 0 24 24"><path d="M2 20h2V9H2v11zm4 0h2V5H6v15zm4 0h2V12h-2v8zm4 0h2V2h-2v18zm4 0h2v-6h-2v6z"/></svg>
</div>
<div class="icon" title="wifi">
<svg viewBox="0 0 24 24"><path d="M12 20l4-4H8l4 4zm0-6c3.9 0 7.4 1.3 10 3.5L22 19c-2.2-1.8-6-3-10-3s-7.8 1.2-10 3l-0-1.5C4.6 15.3 8.1 14 12 14zm0-5c5.5 0 10.2 1.8 13.8 4.7L24 15c-3.2-2.6-7.6-4.2-12-4.2S3.2 12.4 0 15l-1.8-1.3C1.8 10.8 6.5 9 12 9z"/></svg>
</div>
<div class="icon" title="battery">
<svg viewBox="0 0 24 24"><path d="M16 6h2a2 2 0 012 2v8a2 2 0 01-2 2h-2v1h-2v-1H8a2 2 0 01-2-2V8a2 2 0 012-2h8zm0 2H8v8h8V8z"/></svg>
</div>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="nav-row">
<button class="close-btn" aria-label="Close">
<svg viewBox="0 0 24 24"><path fill="#EDE7F6" d="M18.3 5.7L12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7 4.3 4.3l6.3 6.3 6.3-6.3z"/></svg>
</button>
<div class="save-pill">Save</div>
</div>
<input class="title-input" placeholder="Add title" />
</div>
<!-- Account -->
<div class="account-row">
<div class="avatar">C</div>
<div class="account-text">
<div class="account-line"><span class="blue-dot"></span><span>Events</span></div>
<div class="email">dbwscratch.test.id4@gmail.com</div>
</div>
</div>
<!-- Settings -->
<div class="list">
<div class="row">
<div class="left">
<svg width="60" height="60" viewBox="0 0 24 24"><path fill="#EDE7F6" d="M12 1a11 11 0 1011 11A11 11 0 0012 1zm0 2a9 9 0 11-9 9 9 9 0 019-9zm.5 4h-1.5v6l5 3 .8-1.3-4.3-2.5z"/></svg>
</div>
<div class="label">All-day</div>
<div class="right">
<div class="toggle"><span></span></div>
</div>
</div>
<div class="row">
<div class="left"></div>
<div class="label">Mon, Jul 24, 2023</div>
<div class="right">9:00 AM</div>
</div>
<div class="row">
<div class="left"></div>
<div class="label">Mon, Jul 24, 2023</div>
<div class="right">10:00 AM</div>
</div>
<div class="row">
<div class="left">
<svg width="60" height="60" viewBox="0 0 24 24"><path fill="#EDE7F6" d="M12 2a10 10 0 1010 10A10 10 0 0012 2zm7.9 9h-3.3a8.6 8.6 0 00-1.4-4 8 8 0 014.7 4zM12 4a8 8 0 013.3 6H8.7A8 8 0 0112 4zM4.1 13h3.3a8.6 8.6 0 001.4 4 8 8 0 01-4.7-4zM12 20a8 8 0 01-3.3-6h6.6A8 8 0 0112 20zM15.2 13h4.7a8 8 0 01-4.7 4 8.5 8.5 0 000-4z"/></svg>
</div>
<div class="label">India Standard Time</div>
</div>
<div class="row">
<div class="left">
<svg width="60" height="60" viewBox="0 0 24 24"><path fill="#EDE7F6" d="M12 5V2L7 7l5 5V9c2.8 0 5 2.2 5 5a5 5 0 01-5 5H6v2h6a7 7 0 000-14z"/></svg>
</div>
<div class="label">Does not repeat</div>
</div>
<div class="row">
<div class="left">
<svg width="60" height="60" viewBox="0 0 24 24"><path fill="#EDE7F6" d="M12 12a5 5 0 10-5-5 5 5 0 005 5zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5z"/></svg>
</div>
<div class="label">Add people</div>
</div>
</div>
<!-- Keyboard mock -->
<div class="keyboard">
<div class="kb-top">
<div style="display:flex; gap:20px;">
<div class="slot">▦</div>
<div class="slot">😊</div>
<div class="slot">GIF</div>
<div class="slot">⚙</div>
</div>
<div style="display:flex; gap:20px;">
<div class="slot">🌐</div>
<div class="slot">🎨</div>
<div class="slot">🎤</div>
</div>
</div>
<div class="keys">
<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="row-gap"></div>
<div class="keys keys2">
<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="row-gap"></div>
<div class="keys keys3">
<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">⌫</div>
</div>
<div class="space-row">
<div class="space key">?123</div>
<div class="space key" style="grid-column: 2 / span 1;">,</div>
<div class="space key" style="grid-column: 2 / span 1; visibility:hidden;"></div>
<div class="space key" style="grid-column: 2 / span 1; visibility:hidden;"></div>
</div>
<div class="space-row">
<div class="space key">,</div>
<div class="space key mid"></div>
<div class="space key">.</div>
<div class="space key">✓</div>
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html> |