| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <style> |
| body { |
| margin: 0; |
| padding: 0; |
| background: transparent; |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif; |
| } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #193E4A; |
| color: #FFFFFF; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 30px; |
| left: 40px; |
| right: 40px; |
| height: 80px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| opacity: 0.95; |
| color: #EAF4F7; |
| } |
| .status-time { |
| font-size: 44px; |
| font-weight: 600; |
| letter-spacing: 0.5px; |
| } |
| .status-icons { |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .status-icons svg { |
| width: 38px; |
| height: 38px; |
| fill: none; |
| stroke: #EAF4F7; |
| stroke-width: 3; |
| opacity: 0.95; |
| } |
| |
| |
| .title { |
| position: absolute; |
| top: 220px; |
| left: 0; |
| width: 100%; |
| text-align: center; |
| font-size: 72px; |
| font-weight: 700; |
| } |
| .subtitle { |
| position: absolute; |
| top: 320px; |
| left: 120px; |
| width: 840px; |
| text-align: center; |
| font-size: 32px; |
| line-height: 46px; |
| color: #B8D0D9; |
| } |
| |
| |
| .cards { |
| position: absolute; |
| top: 520px; |
| left: 40px; |
| right: 40px; |
| } |
| .perm-card { |
| background: #2B5361; |
| border-radius: 26px; |
| padding: 36px 40px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| margin-bottom: 36px; |
| box-shadow: 0 1px 0 rgba(0,0,0,0.05) inset; |
| } |
| .card-left { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| } |
| .icon-wrap { |
| width: 70px; |
| height: 70px; |
| border-radius: 16px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .icon-wrap svg { |
| width: 54px; |
| height: 54px; |
| stroke: #DDE9EE; |
| stroke-width: 3.5; |
| fill: none; |
| } |
| .card-text .card-title { |
| font-size: 40px; |
| font-weight: 600; |
| letter-spacing: 0.3px; |
| color: #EAF4F7; |
| margin-bottom: 6px; |
| } |
| .card-text .card-desc { |
| font-size: 28px; |
| color: #9EB6C0; |
| } |
| .checkbox { |
| width: 56px; |
| height: 56px; |
| border: 3px solid #8FA8B2; |
| border-radius: 12px; |
| box-sizing: border-box; |
| opacity: 0.9; |
| } |
| |
| |
| .actions { |
| position: absolute; |
| left: 40px; |
| right: 40px; |
| bottom: 190px; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| gap: 28px; |
| } |
| .btn { |
| height: 120px; |
| border-radius: 28px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 42px; |
| font-weight: 700; |
| letter-spacing: 0.3px; |
| } |
| .btn-outline { |
| width: 280px; |
| color: #FFFFFF; |
| border: 3px solid #B6CED6; |
| background: transparent; |
| } |
| .btn-primary { |
| flex: 1; |
| background: #1FF7B5; |
| color: #103D42; |
| box-shadow: 0 6px 16px rgba(12, 239, 167, 0.35); |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 90px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 240px; |
| height: 12px; |
| background: rgba(255,255,255,0.85); |
| border-radius: 6px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div class="status-time">10:08</div> |
| <div class="status-icons"> |
| |
| <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="#EAF4F7"/></svg> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 5v12M7 10l5-5 5 5" /> |
| </svg> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M2 8c5-4 15-4 20 0" /> |
| <path d="M5 12c3-3 11-3 14 0" /> |
| <path d="M8 16c2-2 6-2 8 0" /> |
| <circle cx="12" cy="19" r="1.8" fill="#EAF4F7"/> |
| </svg> |
| |
| <svg viewBox="0 0 28 24"> |
| <rect x="2" y="6" width="20" height="12" rx="2"></rect> |
| <rect x="23" y="9" width="3" height="6" rx="1"></rect> |
| <rect x="4" y="8" width="14" height="8" rx="1" fill="#EAF4F7" stroke="none"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="title">Permissions</div> |
| <div class="subtitle">Grant Windy.app permissions for an optimal experience</div> |
|
|
| |
| <div class="cards"> |
| <div class="perm-card"> |
| <div class="card-left"> |
| <div class="icon-wrap"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 4c-3 0-5 2-5 5v3l-2 3h14l-2-3V9c0-3-2-5-5-5z"></path> |
| <path d="M10 19c0 1.1.9 2 2 2s2-.9 2-2" /> |
| <path d="M4 5h4M6 3v4" /> |
| </svg> |
| </div> |
| <div class="card-text"> |
| <div class="card-title">Push notifications</div> |
| <div class="card-desc">Never miss great conditions or important updates</div> |
| </div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| <div class="perm-card"> |
| <div class="card-left"> |
| <div class="icon-wrap"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="8"></circle> |
| <circle cx="12" cy="12" r="2" fill="#DDE9EE" stroke="none"></circle> |
| <path d="M12 3v3M21 12h-3M12 21v-3M3 12h3" /> |
| </svg> |
| </div> |
| <div class="card-text"> |
| <div class="card-title">Location</div> |
| <div class="card-desc">Instantly see weather for your location and view spots nearby</div> |
| </div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="actions"> |
| <div class="btn btn-outline">Skip</div> |
| <div class="btn btn-primary">Allow all</div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |