| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Mondly Language Select</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Arial, Helvetica, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: linear-gradient(180deg, #2f79ff 0%, #356df7 35%, #3a63f0 60%, #5a39c8 100%); |
| color: #ffffff; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 96px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| box-sizing: border-box; |
| color: #eaf2ff; |
| font-size: 38px; |
| letter-spacing: 0.5px; |
| opacity: 0.9; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .icon { |
| width: 44px; |
| height: 44px; |
| display: inline-block; |
| } |
| |
| |
| .logo-wrap { |
| position: absolute; |
| top: 150px; |
| left: 0; |
| width: 100%; |
| text-align: center; |
| } |
| .brand { |
| font-size: 128px; |
| font-weight: 300; |
| letter-spacing: 2px; |
| line-height: 1; |
| } |
| .brand .globe { |
| display: inline-flex; |
| width: 96px; |
| height: 96px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 50%; |
| color: #757575; |
| align-items: center; |
| justify-content: center; |
| font-size: 22px; |
| margin: 0 12px; |
| vertical-align: middle; |
| } |
| .byline { |
| font-size: 40px; |
| opacity: 0.95; |
| margin-top: 10px; |
| } |
| |
| |
| .section-title { |
| position: relative; |
| margin: 500px 48px 24px 48px; |
| font-size: 56px; |
| font-weight: 700; |
| } |
| .section-title.learn { |
| margin-top: 760px; |
| } |
| |
| |
| .card { |
| margin: 0 36px; |
| background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.12) 100%); |
| border-radius: 44px; |
| box-shadow: inset 0 1px 0 rgba(255,255,255,0.25); |
| overflow: hidden; |
| } |
| .card-header { |
| display: flex; |
| align-items: center; |
| padding: 32px 36px; |
| gap: 28px; |
| font-size: 52px; |
| font-weight: 700; |
| } |
| .card-header .chevron { |
| margin-left: auto; |
| width: 60px; |
| height: 60px; |
| } |
| .flag { |
| width: 96px; |
| height: 96px; |
| min-width: 96px; |
| border-radius: 50%; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 22px; |
| } |
| |
| |
| .select-header { |
| padding: 32px 36px; |
| font-size: 52px; |
| font-weight: 700; |
| display: flex; |
| align-items: center; |
| } |
| .select-header .chevron { |
| margin-left: auto; |
| width: 60px; |
| height: 60px; |
| } |
| .list { |
| height: 1250px; |
| overflow-y: auto; |
| background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.06) 100%); |
| padding: 20px 0 24px 0; |
| } |
| .list-item { |
| display: flex; |
| align-items: center; |
| padding: 28px 40px; |
| gap: 28px; |
| color: #ffffff; |
| font-size: 54px; |
| font-weight: 700; |
| } |
| .divider { |
| height: 1px; |
| background: rgba(255,255,255,0.08); |
| margin: 0 40px; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 42px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 360px; |
| height: 14px; |
| background: rgba(255,255,255,0.85); |
| border-radius: 12px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div>6:40</div> |
| <div class="status-right"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M2 8c5-4 15-4 20 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/> |
| <path d="M5 12c3-3 11-3 14 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/> |
| <path d="M9 16c2-2 4-2 6 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/> |
| <circle cx="12" cy="20" r="1.5" fill="#fff"/> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 30 24"> |
| <rect x="2" y="5" width="22" height="14" rx="3" ry="3" stroke="#fff" stroke-width="2" fill="none"/> |
| <rect x="4" y="7" width="16" height="10" rx="2" fill="#fff"/> |
| <rect x="24" y="9" width="4" height="6" rx="1" fill="#fff"/> |
| </svg> |
| <div style="font-size:32px;">100%</div> |
| </div> |
| </div> |
|
|
| |
| <div class="logo-wrap"> |
| <div class="brand"> |
| m<span class="globe">[IMG: Globe]</span>ndly |
| </div> |
| <div class="byline">by Pearson</div> |
| </div> |
|
|
| |
| <div class="section-title">I speak</div> |
| <div class="card" style="margin-top: 12px;"> |
| <div class="card-header"> |
| <div class="flag">[IMG: UK Flag]</div> |
| <div>English</div> |
| <svg class="chevron" viewBox="0 0 24 24"> |
| <path d="M3 8l9 9 9-9" stroke="#ffffff" stroke-width="2.8" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="section-title learn">I want to learn</div> |
| <div class="card" style="margin-top: 12px;"> |
| <div class="select-header"> |
| <div>Select</div> |
| <svg class="chevron" viewBox="0 0 24 24"> |
| <path d="M3 16l9-9 9 9" stroke="#ffffff" stroke-width="2.8" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="list"> |
| <div class="list-item"> |
| <div class="flag">[IMG: Japanese Flag]</div> |
| <div>Japanese</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: Korean Flag]</div> |
| <div>Korean</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: Chinese Flag]</div> |
| <div>Chinese</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: Turkish Flag]</div> |
| <div>Turkish</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: Romanian Flag]</div> |
| <div>Romanian</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: Arabic Emblem]</div> |
| <div>Arabic</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: Iranian Flag]</div> |
| <div>Persian</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: Israeli Flag]</div> |
| <div>Hebrew</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: Portugal Flag]</div> |
| <div>Portuguese</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: Brazil Flag]</div> |
| <div>Portuguese</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: Spanish Flag]</div> |
| <div>Spanish</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: French Flag]</div> |
| <div>French</div> |
| </div> |
| <div class="divider"></div> |
| <div class="list-item"> |
| <div class="flag">[IMG: German Flag]</div> |
| <div>German</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |