| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>UI Render</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| position: relative; |
| overflow: hidden; |
| width: 1080px; |
| height: 2400px; |
| background: linear-gradient(180deg, #4E86FF 0%, #3E6CF3 40%, #3A54E6 70%, #3A34D2 100%); |
| font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif; |
| color: #fff; |
| } |
| |
| .status-bar { |
| position: absolute; |
| top: 18px; |
| left: 0; |
| width: 100%; |
| height: 80px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| opacity: 0.95; |
| } |
| .status-left { font-weight: 600; font-size: 40px; letter-spacing: 0.5px; } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| font-size: 34px; |
| } |
| .dot-sep { |
| width: 12px; height: 12px; background: rgba(255,255,255,0.6); border-radius: 50%; |
| } |
| .progress { |
| position: absolute; |
| top: 140px; |
| left: 0; right: 0; |
| display: flex; |
| justify-content: center; |
| gap: 24px; |
| } |
| .progress .p-dot { |
| width: 22px; height: 22px; |
| border-radius: 50%; |
| background: rgba(255,255,255,0.35); |
| } |
| .title { |
| position: absolute; |
| top: 300px; |
| left: 60px; |
| right: 60px; |
| text-align: center; |
| font-weight: 800; |
| font-size: 96px; |
| line-height: 1.15; |
| letter-spacing: -0.5px; |
| text-shadow: 0 2px 6px rgba(0,0,0,0.15); |
| } |
| |
| |
| .hair-shape { |
| position: absolute; |
| bottom: 520px; |
| left: 140px; |
| width: 800px; |
| height: 480px; |
| background: radial-gradient(120% 100% at 50% 20%, #FFB439 0%, #F79A2E 70%, #E07C2A 100%); |
| border-radius: 240px 240px 120px 120px; |
| box-shadow: 0 30px 80px rgba(0,0,0,0.25); |
| transform: rotate(-2deg); |
| opacity: 0.95; |
| } |
| |
| |
| .bubble { |
| position: absolute; |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-weight: 800; |
| color: #fff; |
| text-transform: none; |
| box-shadow: 0 12px 28px rgba(0,0,0,0.18); |
| background: transparent; |
| } |
| .bubble span { transform: translateY(2px); } |
| .b-yellow { border: 16px solid #F4D64F; } |
| .b-red { border: 16px solid #FF4F5A; } |
| .b-orange { border: 16px solid #FF9C3D; } |
| .b-green { border: 16px solid #43D17B; } |
| .b-teal { border: 16px solid #59D6E7; } |
| .b-lilac { border: 16px solid #C8A6D6; } |
| |
| |
| .cta { |
| position: absolute; |
| bottom: 160px; |
| left: 60px; |
| width: 960px; |
| height: 160px; |
| border-radius: 90px; |
| background: linear-gradient(90deg, #FF4FC3 0%, #C343F7 50%, #7D44FF 100%); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-weight: 800; |
| font-size: 56px; |
| letter-spacing: 0.5px; |
| color: #fff; |
| box-shadow: 0 24px 60px rgba(90, 27, 190, 0.45); |
| } |
| .home-indicator { |
| position: absolute; |
| bottom: 62px; |
| left: 50%; |
| width: 320px; |
| height: 16px; |
| border-radius: 8px; |
| background: rgba(255,255,255,0.85); |
| transform: translateX(-50%); |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left">6:42</div> |
| <div class="status-right"> |
| |
| <svg width="44" height="44" viewBox="0 0 24 24" fill="none"> |
| <path d="M2 9c4-4 16-4 20 0" stroke="white" stroke-width="2" stroke-linecap="round"/> |
| <path d="M5 12c3-3 11-3 14 0" stroke="white" stroke-width="2" stroke-linecap="round"/> |
| <path d="M8 15c2-2 6-2 8 0" stroke="white" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| <div class="dot-sep"></div> |
| <svg width="44" height="44" viewBox="0 0 24 24" fill="none"> |
| <path d="M2 7h16c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2H2V7z" stroke="white" stroke-width="2" stroke-linejoin="round"/> |
| <rect x="3" y="9" width="14" height="6" fill="white"/> |
| </svg> |
| <span style="font-weight:700;">100%</span> |
| </div> |
| </div> |
|
|
| |
| <div class="progress"> |
| <div class="p-dot"></div> |
| <div class="p-dot"></div> |
| <div class="p-dot"></div> |
| <div class="p-dot"></div> |
| <div class="p-dot"></div> |
| <div class="p-dot"></div> |
| <div class="p-dot"></div> |
| <div class="p-dot"></div> |
| <div class="p-dot"></div> |
| <div class="p-dot"></div> |
| </div> |
|
|
| |
| <div class="title">Cannot memorize words?</div> |
|
|
| |
| <div class="hair-shape"></div> |
|
|
| |
| <div class="bubble b-yellow" style="width:190px;height:190px;left:70px;top:990px;"> |
| <span style="font-size:64px;">cão</span> |
| </div> |
| <div class="bubble b-yellow" style="width:260px;height:260px;left:40px;top:1140px;"> |
| <span style="font-size:86px;">gato</span> |
| </div> |
| <div class="bubble b-red" style="width:240px;height:240px;left:320px;top:1060px;"> |
| <span style="font-size:80px;">suco</span> |
| </div> |
| <div class="bubble b-lilac" style="width:200px;height:200px;left:500px;top:1260px;"> |
| <span style="font-size:60px;">carro</span> |
| </div> |
| <div class="bubble b-teal" style="width:260px;height:260px;left:640px;top:1200px;"> |
| <span style="font-size:100px;">dia</span> |
| </div> |
| <div class="bubble b-orange" style="width:280px;height:280px;right:120px;top:980px;"> |
| <span style="font-size:104px;">chá</span> |
| </div> |
| <div class="bubble b-green" style="width:250px;height:250px;right:40px;top:1130px;"> |
| <span style="font-size:96px;">café</span> |
| </div> |
| <div class="bubble b-red" style="width:190px;height:190px;right:180px;top:1270px;"> |
| <span style="font-size:84px;">Oi.</span> |
| </div> |
|
|
| |
| <div class="cta">Continue</div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |