| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Busuu Onboarding Mock</title> |
| <style> |
| body { |
| margin: 0; |
| padding: 0; |
| background: transparent; |
| font-family: "Inter", "Helvetica Neue", Arial, sans-serif; |
| } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 110px; |
| background: #1f4b7a; |
| color: #ffffff; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| box-sizing: border-box; |
| font-weight: 600; |
| } |
| .status-bar .time { |
| font-size: 40px; |
| letter-spacing: 1px; |
| } |
| .status-bar .right { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 18px; |
| } |
| .status-dot { |
| width: 12px; height: 12px; background: #fff; opacity: 0.7; border-radius: 50%; |
| } |
| .battery { |
| width: 70px; height: 30px; border: 3px solid #fff; border-radius: 6px; position: relative; |
| } |
| .battery::after { |
| content: ""; |
| position: absolute; right: -10px; top: 9px; width: 6px; height: 12px; background: #fff; border-radius: 2px; |
| } |
| .battery .level { |
| position: absolute; left: 3px; top: 3px; bottom: 3px; right: 12px; background: #fff; |
| } |
| |
| |
| .hero { |
| position: absolute; |
| top: 110px; |
| left: 0; |
| width: 1080px; |
| height: 1550px; |
| background: linear-gradient(180deg, #3e7df0 0%, #4b2be7 100%); |
| } |
| |
| |
| .logo-wrap { |
| width: 100%; |
| box-sizing: border-box; |
| padding: 120px 80px 0 80px; |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| } |
| .logo-icon { |
| width: 120px; |
| height: 120px; |
| border-radius: 32px; |
| background: #ffffff; |
| position: relative; |
| overflow: hidden; |
| } |
| .logo-icon::after { |
| content: ""; |
| position: absolute; |
| right: -14%; |
| bottom: -14%; |
| width: 80%; |
| height: 80%; |
| background: #a9c3ff; |
| border-top-left-radius: 100px; |
| border-bottom-right-radius: 24px; |
| } |
| .logo-text { |
| color: #ffffff; |
| } |
| .logo-text .brand { |
| font-weight: 800; |
| font-size: 110px; |
| line-height: 1; |
| } |
| .logo-text .tagline { |
| font-size: 44px; |
| opacity: 0.9; |
| margin-top: 10px; |
| } |
| |
| |
| .circle { |
| position: absolute; |
| border-radius: 50%; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| color: #757575; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| text-align: center; |
| padding: 12px; |
| box-sizing: border-box; |
| } |
| .circle.small { font-size: 28px; } |
| .circle.medium { font-size: 30px; } |
| .circle.large { font-size: 32px; } |
| .circle.center-illustration { font-size: 34px; background: #E0E0E0; } |
| |
| |
| .sheet { |
| position: absolute; |
| left: 0; |
| right: 0; |
| top: 1520px; |
| height: 880px; |
| background: #ffffff; |
| border-top-left-radius: 90px; |
| border-top-right-radius: 90px; |
| box-shadow: 0 -8px 24px rgba(0,0,0,0.12); |
| padding: 80px 64px 40px 64px; |
| box-sizing: border-box; |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| } |
| .title { |
| text-align: center; |
| color: #111419; |
| font-size: 68px; |
| font-weight: 800; |
| line-height: 1.15; |
| margin: 10px 0 56px 0; |
| max-width: 920px; |
| } |
| .btn { |
| width: 960px; |
| height: 140px; |
| background: #66e39c; |
| border-radius: 90px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #10351d; |
| font-weight: 700; |
| font-size: 48px; |
| box-shadow: 0 8px 0 rgba(0,0,0,0.05) inset; |
| } |
| .meta { |
| margin-top: 40px; |
| font-size: 36px; |
| color: #7b8594; |
| } |
| .meta a { |
| color: #3b72f6; |
| text-decoration: underline; |
| } |
| |
| |
| .gesture { |
| position: absolute; |
| bottom: 22px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 320px; |
| height: 10px; |
| border-radius: 6px; |
| background: #000; |
| opacity: 0.6; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="time">6:40</div> |
| <div class="right"> |
| <div class="status-dot"></div> |
| <div class="status-dot"></div> |
| <div class="status-dot"></div> |
| <div class="battery"><div class="level"></div></div> |
| </div> |
| </div> |
|
|
| |
| <div class="hero"> |
| <div class="logo-wrap"> |
| <div class="logo-icon"></div> |
| <div class="logo-text"> |
| <div class="brand">Busuu</div> |
| <div class="tagline">a Chegg service</div> |
| </div> |
| </div> |
|
|
| |
| <div class="circle small" style="width:170px;height:170px; top:520px; left:170px;">[IMG: Flag]</div> |
| <div class="circle small" style="width:160px;height:160px; top:520px; left:470px;">[IMG: Flag]</div> |
| <div class="circle large" style="width:380px;height:380px; top:460px; right:60px;">[IMG: Flag]</div> |
| <div class="circle medium" style="width:330px;height:330px; top:850px; left:60px; opacity:0.9;">[IMG: Flag]</div> |
| <div class="circle center-illustration" style="width:440px;height:440px; top:860px; left:320px;">[IMG: Person using phone]</div> |
| <div class="circle small" style="width:170px;height:170px; top:930px; right:120px;">[IMG: Flag]</div> |
| <div class="circle medium" style="width:320px;height:320px; top:1180px; left:170px; opacity:0.85;">[IMG: Flag]</div> |
| <div class="circle medium" style="width:200px;height:200px; top:1200px; left:660px;">[IMG: Emblem]</div> |
| <div class="circle medium" style="width:300px;height:300px; top:1180px; right:80px;">[IMG: Flag]</div> |
| </div> |
|
|
| |
| <div class="sheet"> |
| <div class="title">Learn a language in 3 minutes a day</div> |
| <div class="btn">Start learning</div> |
| <div class="meta">Already have an account? <a href="#">Log in</a></div> |
| </div> |
|
|
| <div class="gesture"></div> |
| </div> |
| </body> |
| </html> |