| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Calendar Event - Transport</title> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; height: 2400px; position: relative; overflow: hidden; |
| background: #121212; color: #FFFFFF; |
| } |
| |
| .status-bar { |
| height: 92px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; |
| color: #EDEDED; font-size: 34px; letter-spacing: 0.5px; |
| } |
| .status-icons { display: flex; align-items: center; gap: 22px; } |
| .icon { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; } |
| .icon svg { width: 100%; height: 100%; fill: none; stroke: #EDEDED; stroke-width: 4; } |
| |
| .app-bar { |
| height: 160px; display: flex; align-items: center; padding: 0 30px; |
| } |
| .back-btn { |
| width: 76px; height: 76px; display: flex; align-items: center; justify-content: center; |
| margin-right: 12px; |
| } |
| .back-btn svg { stroke: #BEB7C8; stroke-width: 12; } |
| .title { |
| font-size: 64px; font-weight: 500; flex: 1; |
| } |
| .save-btn { |
| background: #CFA7F5; color: #1A1324; border-radius: 46px; padding: 22px 40px; font-size: 40px; font-weight: 600; |
| } |
| |
| .account { |
| padding: 22px 36px; display: flex; align-items: center; gap: 26px; border-top: 1px solid rgba(255,255,255,0.06); |
| border-bottom: 1px solid rgba(255,255,255,0.06); |
| } |
| .avatar { |
| width: 80px; height: 80px; border-radius: 40px; background: #D87EA0; display: flex; align-items: center; justify-content: center; |
| color: #2B0D16; font-weight: 700; font-size: 40px; |
| } |
| .account-text { line-height: 1.4; } |
| .account-top { display: flex; align-items: center; gap: 12px; } |
| .blue-dot { width: 18px; height: 18px; background: #4FA8FF; border-radius: 9px; } |
| .account-title { font-size: 38px; } |
| .account-sub { font-size: 30px; color: #A3A3A3; } |
| |
| .section { } |
| .item { |
| display: flex; align-items: center; padding: 28px 36px; border-bottom: 1px solid rgba(255,255,255,0.06); |
| } |
| .item .lead-icon { width: 68px; height: 68px; margin-right: 30px; } |
| .item .lead-icon svg { width: 100%; height: 100%; stroke: #CFCFCF; stroke-width: 4; fill: none; } |
| .item .label { font-size: 38px; color: #EDEDED; } |
| .item .value { margin-left: auto; font-size: 38px; color: #EDEDED; } |
| .subtext { font-size: 30px; color: #A3A3A3; margin-top: 6px; } |
| |
| .toggle { |
| width: 170px; height: 86px; border-radius: 43px; background: #3A3A3A; margin-left: auto; position: relative; |
| } |
| .toggle::before { |
| content: ""; width: 74px; height: 74px; border-radius: 37px; background: #9B9B9B; position: absolute; top: 6px; left: 8px; |
| } |
| |
| .pill-btn { |
| margin-left: 22px; padding: 22px 36px; background: #2E2E2E; border-radius: 38px; font-size: 34px; color: #DCDCDC; border: 1px solid rgba(255,255,255,0.12); |
| } |
| |
| .meet-icon { |
| width: 68px; height: 68px; border-radius: 12px; background: #1F7A3E; display: flex; align-items: center; justify-content: center; |
| margin-right: 30px; |
| } |
| .meet-icon div { |
| width: 40px; height: 40px; background: #E0E0E0; border: 2px solid #BDBDBD; color: #222; display: flex; align-items: center; justify-content: center; font-size: 18px; |
| } |
| .row-end-x { |
| width: 54px; height: 54px; margin-left: auto; display: flex; align-items: center; justify-content: center; |
| } |
| .row-end-x svg { stroke: #CFCFCF; stroke-width: 8; } |
| |
| .color-row { padding: 28px 36px; display: flex; align-items: center; gap: 26px; } |
| .color-dot { width: 34px; height: 34px; background: #5C6BC0; border-radius: 17px; } |
| .bottom-fade { |
| position: absolute; bottom: 0; left: 0; right: 0; height: 120px; |
| background: linear-gradient(to bottom, rgba(18,18,18,0), rgba(18,18,18,1)); |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>8:42</div> |
| <div class="status-icons"> |
| <div class="icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <rect x="5" y="6" width="14" height="10" rx="2" /> |
| <circle cx="8" cy="19" r="2" /> |
| <circle cx="16" cy="19" r="2" /> |
| </svg> |
| </div> |
| <div class="icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <rect x="2" y="14" width="3" height="8"/> |
| <rect x="8" y="10" width="3" height="12"/> |
| <rect x="14" y="6" width="3" height="16"/> |
| <rect x="20" y="2" width="3" height="20"/> |
| </svg> |
| </div> |
| <div class="icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M2 8c5-4 15-4 20 0"/> |
| <path d="M5 12c4-3 10-3 14 0"/> |
| <path d="M8 16c3-2 5-2 8 0"/> |
| <circle cx="12" cy="20" r="1.5" /> |
| </svg> |
| </div> |
| <div class="icon"> |
| |
| <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="5"/></svg> |
| </div> |
| <div class="icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <rect x="2" y="6" width="18" height="12" rx="2"/> |
| <rect x="21" y="9" width="2" height="6"/> |
| <rect x="4" y="8" width="10" height="8" fill="#EDEDED"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="back-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M4 4 L20 20" /> |
| <path d="M20 4 L4 20" /> |
| </svg> |
| </div> |
| <div class="title">Transport</div> |
| <div class="save-btn">Save</div> |
| </div> |
|
|
| |
| <div class="account"> |
| <div class="avatar">C</div> |
| <div class="account-text"> |
| <div class="account-top"> |
| <div class="blue-dot"></div> |
| <div class="account-title">Events</div> |
| </div> |
| <div class="account-sub">dbwscratch.test.id4@gmail.com</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="item"> |
| <div class="lead-icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="9"/> |
| <path d="M12 6 L12 12 L17 14"/> |
| </svg> |
| </div> |
| <div class="label">All-day</div> |
| <div class="toggle"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="label" style="margin-left: 98px;">Tue, Jul 25, 2023</div> |
| <div class="value">2:00 PM</div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="label" style="margin-left: 98px;">Tue, Jul 25, 2023</div> |
| <div class="value">3:00 PM</div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="lead-icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="10"/> |
| <path d="M2 12 H22"/> |
| <path d="M12 2 V22"/> |
| <path d="M5 5 C8 7 16 7 19 5"/> |
| <path d="M5 19 C8 17 16 17 19 19"/> |
| </svg> |
| </div> |
| <div class="label">India Standard Time</div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="lead-icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M6 9 A6 6 0 0 1 18 9 L20 7 M6 15 A6 6 0 0 0 18 15 L16 17"/> |
| </svg> |
| </div> |
| <div class="label">Does not repeat</div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="lead-icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="8" r="4"/> |
| <path d="M4 20 C4 14 20 14 20 20"/> |
| </svg> |
| </div> |
| <div class="label">Add people</div> |
| <div class="pill-btn">View schedules</div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="meet-icon"> |
| <div>[IMG: Google Meet]</div> |
| </div> |
| <div> |
| <div class="label" style="margin-right: 18px;">Google Meet</div> |
| <div class="subtext">Video conferencing details added</div> |
| </div> |
| <div class="row-end-x"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 5 L19 19 M19 5 L5 19"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="lead-icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 3 C8 3 6 6 6 9 C6 13 12 21 12 21 C12 21 18 13 18 9 C18 6 16 3 12 3 Z"/> |
| <circle cx="12" cy="9" r="3"/> |
| </svg> |
| </div> |
| <div class="label">Add location</div> |
| </div> |
|
|
| |
| <div class="item" style="align-items: flex-start; flex-direction: column;"> |
| <div style="width:100%; display:flex; align-items:center;"> |
| <div class="lead-icon" style="margin-right:30px;"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 3 C9 5 8 7 8 10 V15 H4 V16 H20 V15 H16 V10 C16 7 15 5 12 3 Z"/> |
| <circle cx="12" cy="20" r="2"/> |
| </svg> |
| </div> |
| <div class="label">30 minutes before</div> |
| <div class="row-end-x" style="margin-left:auto;"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 5 L19 19 M19 5 L5 19"/> |
| </svg> |
| </div> |
| </div> |
| <div class="subtext" style="padding-left: 98px;">Add notification</div> |
| </div> |
|
|
| |
| <div class="color-row"> |
| <div class="lead-icon" style="width:68px;height:68px;"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="10"/> |
| </svg> |
| </div> |
| <div class="label">Default color</div> |
| <div class="color-dot"></div> |
| </div> |
| </div> |
|
|
| <div class="bottom-fade"></div> |
| </div> |
| </body> |
| </html> |