| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>AccuWeather Mock</title> |
| <style> |
| body { |
| margin: 0; |
| padding: 0; |
| background: transparent; |
| font-family: "Segoe UI", Arial, sans-serif; |
| } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: linear-gradient(180deg, #5a88d5 0%, #4a7fd0 40%, #3e75c6 100%); |
| color: #fff; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 96px; |
| padding: 0 36px; |
| box-sizing: border-box; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| font-weight: 600; |
| letter-spacing: 0.5px; |
| font-size: 42px; |
| opacity: 0.95; |
| } |
| .status-icons { |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .icon-dot { |
| width: 16px; |
| height: 16px; |
| background: #fff; |
| border-radius: 50%; |
| opacity: 0.9; |
| } |
| .icon-square { |
| width: 28px; |
| height: 28px; |
| background: #fff; |
| border-radius: 6px; |
| opacity: 0.9; |
| } |
| .icon-cloud { |
| width: 34px; |
| height: 24px; |
| border-radius: 12px; |
| background: rgba(255,255,255,0.9); |
| position: relative; |
| } |
| .icon-cloud::after{ |
| content:""; |
| position:absolute; |
| width:18px;height:18px; |
| background:#fff;border-radius:50%; |
| left:-8px;top:-6px; |
| } |
| |
| |
| .app-header { |
| position: absolute; |
| top: 108px; |
| left: 0; |
| width: 100%; |
| padding: 0 36px; |
| box-sizing: border-box; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .hamburger { |
| width: 62px; |
| height: 62px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .hamburger svg path { stroke: #fff; stroke-width: 7; } |
| .brand { |
| text-align: left; |
| color: #fff; |
| } |
| .brand .title { |
| font-size: 42px; |
| font-weight: 700; |
| } |
| .brand .subtitle { |
| font-size: 38px; |
| font-weight: 700; |
| margin-top: 6px; |
| } |
| .premium-btn { |
| background: #ff8f4c; |
| color: #fff; |
| font-weight: 800; |
| font-size: 36px; |
| padding: 20px 32px; |
| border-radius: 50px; |
| box-shadow: 0 8px 16px rgba(0,0,0,0.15); |
| } |
| |
| |
| .headline { |
| position: absolute; |
| top: 260px; |
| left: 0; |
| width: 100%; |
| text-align: center; |
| color: #e8f0ff; |
| } |
| .headline .mini { |
| font-size: 30px; |
| letter-spacing: 2px; |
| font-weight: 700; |
| opacity: 0.85; |
| } |
| .headline .main { |
| margin-top: 22px; |
| font-size: 54px; |
| font-weight: 700; |
| } |
| |
| |
| .ring-wrap { |
| position: absolute; |
| top: 420px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 900px; |
| height: 900px; |
| } |
| .ring { |
| width: 900px; |
| height: 900px; |
| border-radius: 50%; |
| background: |
| radial-gradient(closest-side, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 60%, rgba(255,255,255,0.0) 61%), |
| repeating-conic-gradient(from -6deg, |
| rgba(255,255,255,0.35) 0deg 12deg, |
| rgba(255,255,255,0.0) 12deg 22deg); |
| filter: blur(0.2px); |
| } |
| .ring-center { |
| position: absolute; |
| top: 50%; |
| left: 50%; |
| width: 520px; |
| transform: translate(-50%,-50%); |
| text-align: center; |
| } |
| .now-label { |
| position: absolute; |
| top: -80px; |
| left: 50%; |
| transform: translateX(-50%); |
| font-size: 32px; |
| font-weight: 700; |
| letter-spacing: 1px; |
| color: #eaf1ff; |
| } |
| .weather-row { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| gap: 26px; |
| margin-top: 20px; |
| } |
| .partly-icon { |
| width: 120px; |
| height: 90px; |
| } |
| .temp { |
| font-size: 150px; |
| font-weight: 800; |
| line-height: 1; |
| letter-spacing: 2px; |
| } |
| .temp .unit { |
| font-size: 80px; |
| font-weight: 700; |
| vertical-align: top; |
| margin-left: 12px; |
| } |
| .realfeel { |
| margin-top: 16px; |
| font-size: 42px; |
| color: #eaf1ff; |
| } |
| .see-btn { |
| margin-top: 36px; |
| display: inline-block; |
| padding: 22px 36px; |
| border-radius: 40px; |
| background: rgba(255,255,255,0.22); |
| color: #fff; |
| font-weight: 700; |
| font-size: 40px; |
| backdrop-filter: blur(2px); |
| } |
| .see-btn svg { margin-left: 12px; vertical-align: middle; } |
| |
| .update-line { |
| position: absolute; |
| top: 1340px; |
| left: 0; |
| width: 100%; |
| text-align: center; |
| color: #e8f0ff; |
| font-size: 34px; |
| opacity: 0.9; |
| } |
| .dots { |
| position: absolute; |
| top: 1402px; |
| left: 50%; |
| transform: translateX(-50%); |
| display: flex; |
| gap: 30px; |
| } |
| .dot { |
| width: 120px; |
| height: 6px; |
| background: rgba(255,255,255,0.6); |
| border-radius: 6px; |
| } |
| .dot.small { width: 86px; opacity: 0.3; } |
| |
| |
| .cards { |
| position: absolute; |
| bottom: 310px; |
| left: 0; |
| width: 100%; |
| padding: 0 36px; |
| box-sizing: border-box; |
| display: flex; |
| gap: 36px; |
| } |
| .card { |
| flex: 1; |
| min-width: 300px; |
| background: rgba(255,255,255,0.08); |
| border-radius: 24px; |
| padding: 34px; |
| box-sizing: border-box; |
| color: #fff; |
| } |
| .card .label { |
| font-size: 36px; |
| letter-spacing: 1px; |
| opacity: 0.95; |
| } |
| .card .c-icon { |
| width: 72px; |
| height: 72px; |
| margin: 18px 0; |
| } |
| .card .deg { |
| font-size: 86px; |
| font-weight: 800; |
| } |
| .card .rf { |
| margin-top: 8px; |
| font-size: 34px; |
| color: #eaf1ff; |
| } |
| |
| |
| .bottom-nav { |
| position: absolute; |
| bottom: 72px; |
| left: 0; |
| width: 100%; |
| padding: 24px 36px 0 36px; |
| box-sizing: border-box; |
| display: flex; |
| justify-content: space-between; |
| align-items: flex-end; |
| background: linear-gradient(180deg, rgba(62,117,198,0) 0%, rgba(62,117,198,0.3) 60%, rgba(62,117,198,0.7) 100%); |
| } |
| .nav-item { |
| flex: 1; |
| text-align: center; |
| color: #cfe3ff; |
| } |
| .nav-item .ico { |
| width: 80px; |
| height: 80px; |
| margin: 0 auto 14px; |
| } |
| .nav-item .txt { |
| font-size: 34px; |
| font-weight: 700; |
| opacity: 0.9; |
| } |
| .nav-item.active .txt { |
| color: #fff; |
| } |
| .nav-item.active .ico path, .nav-item.active .ico rect, .nav-item.active .ico circle { |
| fill: #fff; |
| stroke: #fff; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>8:18</div> |
| <div class="status-icons"> |
| <div class="icon-cloud"></div> |
| <div class="icon-square"></div> |
| <div class="icon-dot"></div> |
| <div class="icon-dot" style="width:24px;height:24px;"></div> |
| <div class="icon-square" style="border-radius:50%;width:32px;height:32px;"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-header"> |
| <div class="hamburger"> |
| <svg width="52" height="52"> |
| <path d="M6 10 H46 M6 26 H46 M6 42 H46" fill="none"></path> |
| </svg> |
| </div> |
| <div class="brand"> |
| <div class="title">AccuWeather</div> |
| <div class="subtitle">Orléans, FR</div> |
| </div> |
| <div class="premium-btn">GET PREMIUM+</div> |
| </div> |
|
|
| |
| <div class="headline"> |
| <div class="mini">EXCLUSIVE ACCUWEATHER MINUTECAST</div> |
| <div class="main">No precipitation for at least 60 min</div> |
| </div> |
|
|
| |
| <div class="ring-wrap"> |
| <div class="now-label">NOW</div> |
| <div class="ring"></div> |
| <div class="ring-center"> |
| <div class="weather-row"> |
| |
| <svg class="partly-icon" viewBox="0 0 120 90"> |
| |
| <circle cx="36" cy="28" r="16" fill="none" stroke="#fff" stroke-width="6"/> |
| <line x1="36" y1="4" x2="36" y2="0" stroke="#fff" stroke-width="6"/> |
| <line x1="60" y1="28" x2="68" y2="28" stroke="#fff" stroke-width="6"/> |
| <line x1="12" y1="28" x2="4" y2="28" stroke="#fff" stroke-width="6"/> |
| <line x1="22" y1="14" x2="16" y2="8" stroke="#fff" stroke-width="6"/> |
| <line x1="50" y1="14" x2="56" y2="8" stroke="#fff" stroke-width="6"/> |
| |
| <path d="M62 58c-10 0-18 6-18 14s8 12 18 12h32c12 0 18-6 18-14s-8-12-18-12c-2-10-12-16-22-10" fill="none" stroke="#fff" stroke-width="6" /> |
| </svg> |
| <div class="temp">64<span class="unit">°F</span></div> |
| </div> |
| <div class="realfeel">RealFeel 63°</div> |
| <div class="see-btn"> |
| See 4 Hours |
| <svg width="36" height="36" viewBox="0 0 36 36"> |
| <path d="M10 8 L24 18 L10 28" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="update-line">Updated minute-by-minute as of 8:15 PM</div> |
| <div class="dots"> |
| <div class="dot"></div> |
| <div class="dot small"></div> |
| </div> |
|
|
| |
| <div class="cards"> |
| <div class="card"> |
| <div class="label">AFTERNOON</div> |
| <svg class="c-icon" viewBox="0 0 72 72"> |
| <circle cx="26" cy="26" r="12" fill="none" stroke="#fff" stroke-width="4"/> |
| <path d="M26 54c-6 0-10 4-10 8h34c6 0 10-4 10-8s-4-8-10-8c-1-6-7-10-14-6" fill="none" stroke="#fff" stroke-width="4"/> |
| </svg> |
| <div class="deg">66°</div> |
| <div class="rf">RealFeel 65°</div> |
| </div> |
| <div class="card"> |
| <div class="label">TONIGHT</div> |
| <svg class="c-icon" viewBox="0 0 72 72"> |
| <path d="M42 12c-12 2-20 14-18 26s14 20 26 18c-10-2-18-12-18-22s8-20 18-22z" fill="none" stroke="#fff" stroke-width="4"/> |
| </svg> |
| <div class="deg">41°</div> |
| <div class="rf">RealFeel 42°</div> |
| </div> |
| <div class="card"> |
| <div class="label">SUN</div> |
| <svg class="c-icon" viewBox="0 0 72 72"> |
| <circle cx="36" cy="36" r="12" fill="none" stroke="#fff" stroke-width="4"/> |
| <line x1="36" y1="6" x2="36" y2="0" stroke="#fff" stroke-width="4"/> |
| <line x1="36" y1="72" x2="36" y2="66" stroke="#fff" stroke-width="4"/> |
| <line x1="6" y1="36" x2="0" y2="36" stroke="#fff" stroke-width="4"/> |
| <line x1="72" y1="36" x2="66" y2="36" stroke="#fff" stroke-width="4"/> |
| <line x1="14" y1="14" x2="9" y2="9" stroke="#fff" stroke-width="4"/> |
| <line x1="58" y1="58" x2="63" y2="63" stroke="#fff" stroke-width="4"/> |
| <line x1="58" y1="14" x2="63" y2="9" stroke="#fff" stroke-width="4"/> |
| <line x1="14" y1="58" x2="9" y2="63" stroke="#fff" stroke-width="4"/> |
| </svg> |
| <div class="deg">72°</div> |
| <div class="rf">RealFeel 72°</div> |
| </div> |
| </div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-item active"> |
| <svg class="ico" viewBox="0 0 80 80"> |
| <rect x="18" y="26" width="44" height="36" rx="6" ry="6" fill="none" stroke="#cfe3ff" stroke-width="4"></rect> |
| <rect x="22" y="16" width="10" height="10" rx="2" fill="#cfe3ff"></rect> |
| <rect x="48" y="16" width="10" height="10" rx="2" fill="#cfe3ff"></rect> |
| </svg> |
| <div class="txt">Today</div> |
| </div> |
| <div class="nav-item"> |
| <svg class="ico" viewBox="0 0 80 80"> |
| <circle cx="40" cy="40" r="26" fill="none" stroke="#cfe3ff" stroke-width="4"></circle> |
| <line x1="40" y1="40" x2="40" y2="22" stroke="#cfe3ff" stroke-width="4"></line> |
| <line x1="40" y1="40" x2="54" y2="46" stroke="#cfe3ff" stroke-width="4"></line> |
| </svg> |
| <div class="txt">Hourly</div> |
| </div> |
| <div class="nav-item"> |
| <svg class="ico" viewBox="0 0 80 80"> |
| <rect x="18" y="22" width="44" height="38" rx="8" fill="none" stroke="#cfe3ff" stroke-width="4"></rect> |
| <line x1="18" y1="38" x2="62" y2="38" stroke="#cfe3ff" stroke-width="4"></line> |
| </svg> |
| <div class="txt">Daily</div> |
| </div> |
| <div class="nav-item"> |
| <svg class="ico" viewBox="0 0 80 80"> |
| <circle cx="36" cy="36" r="20" fill="none" stroke="#cfe3ff" stroke-width="4"></circle> |
| <path d="M36 16 A20 20 0 0 1 56 36" fill="none" stroke="#cfe3ff" stroke-width="4"></path> |
| <circle cx="64" cy="64" r="10" fill="none" stroke="#cfe3ff" stroke-width="4"></circle> |
| </svg> |
| <div class="txt">Radar & Maps</div> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |