| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Presentation Editor Mock</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #121212; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 120px; |
| background: #0f0f0f; |
| color: #ffffff; |
| font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; |
| font-size: 40px; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| box-sizing: border-box; |
| } |
| .status-left { flex: 0 0 auto; } |
| .status-right { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 30px; |
| } |
| .status-icon svg { width: 42px; height: 42px; fill: none; stroke: #ffffff; stroke-width: 4; } |
| |
| |
| .app-bar { |
| position: absolute; |
| top: 120px; |
| left: 0; |
| width: 1080px; |
| height: 120px; |
| background: #151515; |
| display: flex; |
| align-items: center; |
| box-sizing: border-box; |
| padding: 0 24px; |
| color: #ff8f00; |
| font-weight: 600; |
| font-size: 46px; |
| } |
| .app-actions { |
| display: flex; |
| gap: 46px; |
| margin: 0 auto; |
| align-items: center; |
| } |
| .app-actions .icon-btn svg { width: 54px; height: 54px; stroke: #e0e0e0; stroke-width: 4; fill: none; } |
| .title { |
| position: absolute; |
| left: 50%; |
| transform: translateX(-50%); |
| color: #ff8f00; |
| font-size: 46px; |
| } |
| |
| |
| .slide-area { |
| position: absolute; |
| top: 240px; |
| left: 0; |
| width: 1080px; |
| height: 1260px; |
| background: #4e3a26; |
| } |
| |
| |
| .textbox { |
| position: absolute; |
| top: 140px; |
| left: 72px; |
| width: 936px; |
| padding: 26px 32px 40px 80px; |
| border: 2px dashed #bdbdbd; |
| box-sizing: border-box; |
| } |
| .handle { |
| position: absolute; |
| width: 32px; |
| height: 32px; |
| background: #f5f5f5; |
| border-radius: 50%; |
| border: 2px solid #9e9e9e; |
| } |
| .handle.tl { top: -16px; left: -16px; } |
| .handle.tr { top: -16px; right: -16px; } |
| .handle.bl { bottom: -16px; left: -16px; } |
| .handle.br { bottom: -16px; right: -16px; } |
| .rotate-handle { |
| position: absolute; |
| top: -80px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 48px; |
| height: 48px; |
| background: #f5f5f5; |
| border: 2px solid #9e9e9e; |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .rotate-handle svg { width: 30px; height: 30px; stroke: #757575; stroke-width: 3; fill: none; } |
| |
| .slide-text { |
| color: #ffffff; |
| font-size: 86px; |
| line-height: 1.05; |
| font-weight: 500; |
| letter-spacing: 0.5px; |
| } |
| .bullet { |
| position: absolute; |
| left: 38px; |
| top: 188px; |
| width: 22px; |
| height: 22px; |
| background: #ffffff; |
| border-radius: 50%; |
| } |
| .subtext { |
| position: absolute; |
| top: 490px; |
| left: 90px; |
| font-size: 42px; |
| color: #e0e0e0; |
| } |
| |
| |
| .format-bar { |
| position: absolute; |
| top: 1500px; |
| left: 0; |
| width: 1080px; |
| height: 120px; |
| background: #1a1a1a; |
| display: flex; |
| align-items: center; |
| box-sizing: border-box; |
| padding: 0 30px; |
| color: #e0e0e0; |
| gap: 36px; |
| font-size: 44px; |
| } |
| .fmt-btn { |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| } |
| .fmt-icon { |
| width: 60px; |
| height: 60px; |
| border-radius: 8px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #e0e0e0; |
| } |
| .a-underline { |
| border-bottom: 8px solid #e53935; |
| padding-bottom: 6px; |
| } |
| |
| |
| .keyboard { |
| position: absolute; |
| bottom: 60px; |
| left: 0; |
| width: 1080px; |
| height: 810px; |
| background: #191b1d; |
| box-sizing: border-box; |
| padding-top: 16px; |
| color: #e0e0e0; |
| } |
| .suggest { |
| height: 90px; |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| padding: 0 26px; |
| box-sizing: border-box; |
| font-size: 36px; |
| } |
| .suggest .spacer { margin-left: auto; } |
| .suggest .mic svg { width: 48px; height: 48px; stroke: #e0e0e0; stroke-width: 3; fill: none; } |
| |
| .keys { |
| padding: 10px 16px 0; |
| box-sizing: border-box; |
| display: grid; |
| grid-template-rows: repeat(4, 1fr); |
| gap: 16px; |
| height: 680px; |
| } |
| .row { |
| display: flex; |
| justify-content: space-between; |
| gap: 12px; |
| } |
| .key { |
| flex: 1 1 auto; |
| height: 120px; |
| background: #222428; |
| border-radius: 16px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 44px; |
| color: #e0e0e0; |
| } |
| .key.small { flex: 0 0 120px; } |
| .key.wide { flex: 1 1 420px; } |
| .key.circle { |
| border-radius: 60px; |
| background: #aab7c6; |
| color: #0f0f0f; |
| font-weight: 600; |
| } |
| .key.light { |
| background: #2a2d32; |
| } |
| |
| |
| .gesture { |
| position: absolute; |
| bottom: 16px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 360px; |
| height: 12px; |
| background: #ffffffaa; |
| border-radius: 8px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left">12:30</div> |
| <div class="status-right"> |
| <div class="status-icon"> |
| |
| <svg viewBox="0 0 24 24"><path d="M17 12a7 7 0 1 1-6-9c-2 2-2 5 0 7s5 2 6 2z"/></svg> |
| </div> |
| <div class="status-icon"> |
| |
| <svg viewBox="0 0 24 24"><path d="M2 9c5-4 15-4 20 0"/><path d="M5 12c3-3 11-3 14 0"/><path d="M8 15c2-2 6-2 8 0"/><circle cx="12" cy="18" r="1.5" fill="#ffffff"/></svg> |
| </div> |
| <div class="status-icon"> |
| |
| <svg viewBox="0 0 24 24"><rect x="3" y="14" width="3" height="7" fill="#ffffff"/><rect x="9" y="11" width="3" height="10" fill="#ffffff"/><rect x="15" y="7" width="3" height="14" fill="#ffffff"/></svg> |
| </div> |
| <div class="status-icon"> |
| |
| <svg viewBox="0 0 26 24"><rect x="2" y="5" width="18" height="12" rx="2" stroke="#ffffff"/><rect x="4" y="7" width="14" height="8" fill="#ffffff"/><rect x="20" y="9" width="4" height="4" rx="1" fill="#ffffff"/></svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="app-actions"> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 24 24"><path d="M5 12l4 4 10-10"/></svg> |
| </div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 24 24"><path d="M4 16l12-12 4 4-12 12H4z"/></svg> |
| </div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="6"/><path d="M14 14l6 6"/></svg> |
| </div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="12" rx="2"/><path d="M12 17v4M7 21h10"/></svg> |
| </div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 24 24"><path d="M9 7H4l5-5"/><path d="M4 7c8 0 12 2 12 8"/></svg> |
| </div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg> |
| </div> |
| </div> |
| <div class="title">Presentation.pptx</div> |
| </div> |
|
|
| |
| <div class="slide-area"> |
| <div class="textbox"> |
| <div class="rotate-handle"> |
| <svg viewBox="0 0 24 24"><path d="M12 5a7 7 0 1 1-6 10"/><path d="M6 15l-3-1 1 3"/></svg> |
| </div> |
| <div class="handle tl"></div> |
| <div class="handle tr"></div> |
| <div class="handle bl"></div> |
| <div class="handle br"></div> |
|
|
| <div class="slide-text"> |
| Regular nature hikes strengthen<br> |
| our heart, lungs, and muscles,<br> |
| well as our mind |
| </div> |
| </div> |
| <div class="bullet"></div> |
|
|
| <div class="subtext">Double tap to add text</div> |
| </div> |
|
|
| |
| <div class="format-bar"> |
| <div class="fmt-btn"><div class="fmt-icon">B</div></div> |
| <div class="fmt-btn"><div class="fmt-icon">I</div></div> |
| <div class="fmt-btn"><div class="fmt-icon">U</div></div> |
| <div class="fmt-btn"><div class="fmt-icon a-underline">A</div></div> |
| <div class="fmt-btn"><div class="fmt-icon">•</div><span>Lists</span></div> |
| <div class="fmt-btn"><div class="fmt-icon">1</div><span>2 3</span></div> |
| <div class="fmt-btn"><div class="fmt-icon">≡</div></div> |
| <div class="fmt-btn"><div class="fmt-icon">⇆</div></div> |
| </div> |
|
|
| |
| <div class="keyboard"> |
| <div class="suggest"> |
| <div>mind</div> |
| <div>mindset</div> |
| <div>minds</div> |
| <div class="spacer"></div> |
| <div class="mic"> |
| <svg viewBox="0 0 24 24"><rect x="9" y="4" width="6" height="10" rx="3"/><path d="M5 10v2a7 7 0 0 0 14 0v-2"/><path d="M12 17v4"/></svg> |
| </div> |
| </div> |
| <div class="keys"> |
| <div class="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="row" style="padding: 0 40px;"> |
| <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"> |
| <div class="key small">⇧</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 small">⌫</div> |
| </div> |
| <div class="row"> |
| <div class="key circle">?123</div> |
| <div class="key small">,</div> |
| <div class="key wide"> </div> |
| <div class="key small">.</div> |
| <div class="key circle">↵</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="gesture"></div> |
| </div> |
| </body> |
| </html> |