| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Notifications UI</title> |
| <style> |
| * { box-sizing: border-box; } |
| body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #1f2225; |
| color: #e9ecef; |
| } |
| .status-bar { |
| height: 88px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #ffffff; |
| font-size: 38px; |
| letter-spacing: 0.5px; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| opacity: 0.85; |
| } |
| .icon-dot { width: 14px; height: 14px; background: #ffffff; border-radius: 50%; } |
| .icon-circle { width: 28px; height: 28px; border: 3px solid #ffffff; border-radius: 50%; opacity: 0.85; } |
| .battery { |
| width: 56px; height: 28px; border: 3px solid #ffffff; border-radius: 6px; position: relative; |
| } |
| .battery::after { |
| content: ""; position: absolute; right: -10px; top: 8px; width: 8px; height: 12px; background: #ffffff; border-radius: 2px; |
| } |
| .battery-level { |
| position: absolute; left: 4px; top: 4px; height: 18px; width: 36px; background: #ffffff; border-radius: 3px; |
| } |
| |
| .header { |
| height: 120px; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| border-bottom: 1px solid #2e3236; |
| } |
| .back { |
| width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; margin-right: 18px; |
| } |
| .header h1 { |
| margin: 0; |
| font-size: 52px; |
| font-weight: 600; |
| color: #ffffff; |
| } |
| |
| .content { padding: 12px 0 0 0; } |
| .section { |
| padding: 36px 36px 28px 36px; |
| border-bottom: 1px solid #2e3236; |
| } |
| .section-header { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .section-title { |
| font-size: 46px; |
| font-weight: 600; |
| letter-spacing: 0.2px; |
| color: #ffffff; |
| } |
| .section-sub { |
| margin-top: 18px; |
| font-size: 34px; |
| line-height: 1.38; |
| color: #aab0b7; |
| } |
| .pill-premium { |
| display: inline-flex; |
| align-items: center; |
| gap: 12px; |
| background: #f57c00; |
| color: #fff; |
| font-weight: 700; |
| font-size: 30px; |
| padding: 12px 22px; |
| border-radius: 24px; |
| } |
| .lock svg { display: block; } |
| .status-label { |
| color: #cdd3d9; |
| font-size: 34px; |
| margin-right: 12px; |
| } |
| .chevron { |
| width: 40px; height: 40px; margin-left: 12px; |
| } |
| .right-part { |
| display: flex; align-items: center; gap: 18px; |
| } |
| |
| .chips { |
| margin-top: 22px; |
| display: flex; |
| flex-wrap: wrap; |
| gap: 16px; |
| } |
| .chip { |
| padding: 12px 18px; |
| border-radius: 24px; |
| background: #2b3035; |
| color: #d9dee3; |
| font-size: 30px; |
| font-weight: 600; |
| letter-spacing: 0.3px; |
| text-transform: uppercase; |
| } |
| |
| .section-label { |
| padding: 26px 36px; |
| color: #9ca3aa; |
| font-size: 32px; |
| letter-spacing: 1px; |
| border-bottom: 1px solid #2e3236; |
| } |
| |
| .item { |
| padding: 36px 36px; |
| border-bottom: 1px solid #2e3236; |
| display: flex; align-items: center; justify-content: space-between; |
| } |
| .item-title { |
| font-size: 44px; font-weight: 600; color: #ffffff; |
| } |
| |
| |
| .location-chips { margin-top: 22px; } |
| .location-chip { background: #2b3035; color: #d9dee3; padding: 12px 18px; border-radius: 24px; font-size: 30px; font-weight: 700; display: inline-block; } |
| |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left">8:20</div> |
| <div class="status-right"> |
| <div class="icon-circle"></div> |
| <div class="icon-circle"></div> |
| <div class="icon-dot"></div> |
| <div class="icon-circle"></div> |
| <div class="battery"><div class="battery-level"></div></div> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="back"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M15 5l-8 7 8 7" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| <h1>Notifications</h1> |
| </div> |
|
|
| <div class="content"> |
| |
| <div class="section"> |
| <div class="section-header"> |
| <div class="section-title">AccuWeather Alerts™</div> |
| <div class="pill-premium"> |
| <span>PREMIUM+</span> |
| <span class="lock"> |
| <svg width="22" height="22" viewBox="0 0 22 22"> |
| <circle cx="11" cy="7" r="5" fill="none" stroke="#fff" stroke-width="2"></circle> |
| <rect x="5" y="9" width="12" height="10" rx="2" fill="#fff"></rect> |
| </svg> |
| </span> |
| </div> |
| </div> |
| <div class="section-sub">The most advanced severe weather notifications available.</div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-header"> |
| <div class="section-title">Government Alerts</div> |
| <div class="right-part"> |
| <div class="status-label">ON</div> |
| <svg class="chevron" viewBox="0 0 24 24"> |
| <path d="M9 6l6 6-6 6" fill="none" stroke="#9ca3aa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| </div> |
| <div class="section-sub">Standard watches and warnings that include a map outlining impacted areas and links to more information.</div> |
| <div class="location-chips"> |
| <span class="location-chip">ORLÉANS, FR</span> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-header"> |
| <div class="section-title">Weather News</div> |
| <div class="right-part"> |
| <div class="status-label">ON</div> |
| <svg class="chevron" viewBox="0 0 24 24"> |
| <path d="M9 6l6 6-6 6" fill="none" stroke="#9ca3aa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| </div> |
| <div class="section-sub">The latest in weather-related news, sports, astronomy, and more.</div> |
| <div class="chips"> |
| <div class="chip">Top Stories</div> |
| <div class="chip">Astronomy</div> |
| <div class="chip">Air Quality/Allergy</div> |
| <div class="chip">Sports</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section-label">MORE OPTIONS</div> |
|
|
| |
| <div class="item"> |
| <div class="item-title">System Preferences</div> |
| <svg class="chevron" viewBox="0 0 24 24"> |
| <path d="M9 6l6 6-6 6" fill="none" stroke="#9ca3aa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="item-title">Persistent Notification</div> |
| <div class="right-part"> |
| <div class="status-label">ON</div> |
| <svg class="chevron" viewBox="0 0 24 24"> |
| <path d="M9 6l6 6-6 6" fill="none" stroke="#9ca3aa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| </div> |
| </body> |
| </html> |