| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Share Screen</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: #23160F; color: #E9D2C0; |
| } |
| |
| |
| .statusbar { |
| height: 100px; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; |
| color: #EAD4C4; font-size: 36px; |
| } |
| .status-right { display: flex; align-items: center; gap: 24px; } |
| .icon { display: inline-flex; align-items: center; justify-content: center; } |
| .icon svg { width: 42px; height: 42px; fill: #EAD4C4; } |
| |
| |
| .header { |
| height: 150px; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; |
| border-bottom: 1px solid #3C2C23; |
| } |
| .header-left { display: flex; align-items: center; gap: 28px; } |
| .header-left .title { font-size: 56px; font-weight: 600; color: #EAD4C4; } |
| .header-right { display: flex; align-items: center; gap: 36px; } |
| .header .icon svg { width: 54px; height: 54px; fill: #CBB19C; } |
| |
| |
| .input-row { |
| height: 120px; display: flex; align-items: center; gap: 24px; |
| padding: 0 32px; border-bottom: 1px solid #3C2C23; |
| } |
| .caret { width: 3px; height: 48px; background: #E2A777; border-radius: 2px; } |
| .input-placeholder { font-size: 44px; color: #CEB39E; } |
| |
| |
| .content { position: relative; height: 1230px; } |
| .manage-section { |
| position: absolute; left: 32px; right: 32px; bottom: 900px; |
| } |
| .manage-title { font-size: 42px; color: #DCC1AE; margin-bottom: 24px; } |
| .avatars { display: flex; align-items: center; gap: 26px; } |
| .avatar { |
| width: 92px; height: 92px; border-radius: 50%; |
| display: flex; align-items: center; justify-content: center; |
| color: #23160F; font-weight: 700; font-size: 44px; |
| } |
| .avatar.pink { background: #D81B60; color: #FBE8E1; } |
| .avatar.teal { background: #0EA5A7; color: #EAF6F6; } |
| .divider-vert { width: 2px; height: 60px; background: #5A463B; } |
| |
| |
| .keyboard { |
| position: absolute; left: 0; right: 0; bottom: 0; |
| height: 900px; background: #1E1814; border-top: 1px solid #3C2C23; |
| display: flex; flex-direction: column; |
| } |
| .kb-topbar { |
| height: 120px; display: flex; align-items: center; gap: 48px; padding: 0 36px; color: #EAD4C4; |
| } |
| .kb-topbar .icon svg { width: 48px; height: 48px; fill: #EAD4C4; } |
| .kb-rows { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: 0 24px; } |
| .kb-row { display: flex; justify-content: center; align-items: center; gap: 18px; } |
| .key { |
| height: 120px; min-width: 86px; padding: 0 8px; border-radius: 28px; |
| background: #2A2420; color: #EAD4C4; font-size: 48px; display: flex; align-items: center; justify-content: center; |
| box-shadow: inset 0 0 0 1px #3A302A; |
| } |
| .key.wide { min-width: 160px; } |
| .space { flex: 1; height: 120px; border-radius: 28px; background: #2A2420; box-shadow: inset 0 0 0 1px #3A302A; } |
| .key.special { background: #E9C7A9; color: #2A2420; } |
| .key.circle { border-radius: 50%; min-width: 120px; height: 120px; } |
| |
| |
| .gesture { |
| position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); |
| width: 300px; height: 10px; background: #D9D9D9; border-radius: 10px; opacity: 0.85; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="statusbar"> |
| <div>9:13</div> |
| <div class="status-right"> |
| |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M2 8c5-4 15-4 20 0l-2 2c-4-3-12-3-16 0L2 8zM6 12c3-2 9-2 12 0l-2 2c-2-1-6-1-8 0l-2-2z"/> |
| <circle cx="12" cy="17" r="2"/> |
| </svg> |
| </span> |
| |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="2" y="6" width="18" height="12" rx="2"></rect> |
| <rect x="21" y="10" width="2" height="4"></rect> |
| <rect x="4" y="8" width="14" height="8" fill="#EAD4C4"></rect> |
| </svg> |
| </span> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="header-left"> |
| |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 5l14 14M19 5L5 19" stroke="#CBB19C" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </span> |
| <div class="title">Share</div> |
| </div> |
| <div class="header-right"> |
| |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 12l18-9-6 18-4-7-8-2z" /> |
| </svg> |
| </span> |
| |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2"></circle> |
| <circle cx="12" cy="12" r="2"></circle> |
| <circle cx="12" cy="19" r="2"></circle> |
| </svg> |
| </span> |
| </div> |
| </div> |
|
|
| |
| <div class="input-row"> |
| |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="9" cy="8" r="3" fill="#CBB19C"></circle> |
| <path d="M2 20c1-4 12-4 14 0" stroke="#CBB19C" stroke-width="2" fill="none" stroke-linecap="round"/> |
| <path d="M18 7v3M16.5 8.5h3" stroke="#CBB19C" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </span> |
| <div class="caret"></div> |
| <div class="input-placeholder">Add people or groups</div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="manage-section"> |
| <div class="manage-title">Manage access</div> |
| <div class="avatars"> |
| <div class="avatar pink">C</div> |
| <div class="divider-vert"></div> |
| <div class="avatar teal"> |
| |
| <svg viewBox="0 0 24 24" width="48" height="48"> |
| <circle cx="12" cy="8" r="4" fill="#EAF6F6"></circle> |
| <path d="M4 20c0-4 16-4 16 0" fill="#EAF6F6"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="keyboard"> |
| <div class="kb-topbar"> |
| <span class="icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 3h7v7H3zM14 3h7v7h-7zM3 14h7v7H3zM14 14h7v7h-7z"></path> |
| </svg> |
| </span> |
| <span class="icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="10"></circle> |
| <circle cx="9" cy="10" r="1.5" fill="#23160F"></circle> |
| <circle cx="15" cy="10" r="1.5" fill="#23160F"></circle> |
| <path d="M7 14c2 3 8 3 10 0" fill="none" stroke="#23160F" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </span> |
| <span style="font-size: 42px; color:#EAD4C4;">GIF</span> |
| <span class="icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm8 4l-2 1.2.3 2.3-2.3.3L14.8 18 13 16.8 11.2 18l-1.2-2.2-2.3-.3.3-2.3L6 12l2-1.2-.3-2.3 2.3-.3L12 6l1.8 1.2 2.3-.3-.3 2.3L20 12z"></path> |
| </svg> |
| </span> |
| <span class="icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M4 4h8v8H4zM13 13h7v7h-7zM7 7h2M15 16l2 4M17 16l-2 4" stroke="#EAD4C4" fill="none" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </span> |
| <span class="icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 3c5 0 9 3 9 7 0 3-3 3-4 3-1 0-1 2 0 3 1 1 1 5-5 5-6 0-9-5-9-9 0-4 4-9 9-9z"></path> |
| </svg> |
| </span> |
| <span class="icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <rect x="9" y="5" width="6" height="10" rx="3"></rect> |
| <path d="M5 12c0 4 14 4 14 0M12 16v4M9 20h6" stroke="#EAD4C4" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </span> |
| </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"> |
| <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">shift</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">⌫</div> |
| </div> |
| <div class="kb-row"> |
| <div class="key special wide">?123</div> |
| <div class="key">,</div> |
| <div class="space"></div> |
| <div class="key">.</div> |
| <div class="key special circle">✓</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="gesture"></div> |
| </div> |
| </body> |
| </html> |