File size: 7,235 Bytes
0e1717f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Mondly Language Select - Mock</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #3aa7ff 0%, #2f7bf6 35%, #5b46ef 70%, #5c2cc9 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #ffffff;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 24px;
    left: 36px;
    right: 36px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.95;
    font-size: 34px;
    letter-spacing: 0.5px;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .icon {
    width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  }
  .dot { width: 10px; height: 10px; background: #ffffff; border-radius: 50%; opacity: 0.6; }

  /* Logo */
  .logo {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .logo .brand {
    font-size: 150px;
    font-weight: 300;
    letter-spacing: 2px;
  }
  .logo .brand .globe {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    font-size: 60px;
    margin: 0 12px;
  }
  .logo .sub {
    margin-top: 8px;
    font-size: 38px;
    opacity: 0.9;
  }

  /* Content area */
  .content {
    position: absolute;
    left: 0;
    right: 0;
    top: 520px;
    padding: 0 40px 40px;
  }
  .label {
    font-size: 54px;
    font-weight: 700;
    margin: 40px 0 24px 20px;
  }

  /* Dropdown and panels */
  .card {
    background: rgba(255,255,255,0.18);
    border-radius: 36px;
    padding: 28px 36px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  }
  .dropdown {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 42px;
    padding: 0 36px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  }
  .left {
    display: flex; align-items: center; gap: 28px;
  }

  .flag {
    width: 84px; height: 84px; border-radius: 50%;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    color: #757575;
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
  }
  .lang {
    font-size: 54px; font-weight: 700;
  }
  .chev {
    width: 46px; height: 46px;
  }

  .big-panel {
    border-radius: 44px;
    overflow: hidden;
    background: linear-gradient(170deg, rgba(255,255,255,0.22), rgba(255,255,255,0.10));
  }
  .panel-header {
    height: 140px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .panel-title { font-size: 54px; font-weight: 700; opacity: 0.95; }

  .list {
    padding: 8px 0 16px;
  }
  .row {
    display: flex; align-items: center; gap: 28px;
    padding: 26px 36px;
    height: 132px;
  }
  .row .name {
    font-size: 52px; font-weight: 700;
  }
  .row.disabled { opacity: 0.35; }

  /* Bottom indicator */
  .home-indicator {
    position: absolute;
    bottom: 34px; left: 50%;
    transform: translateX(-50%);
    width: 360px; height: 14px;
    border-radius: 7px;
    background: rgba(255,255,255,0.85);
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>6:40</div>
    <div class="status-icons">
      <div class="icon">
        <svg viewBox="0 0 24 24" width="28" height="28" fill="#fff" opacity="0.9">
          <path d="M6 8h12v10a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V8zm2-4h8l1 2H7l1-2z"/>
        </svg>
      </div>
      <div class="icon">
        <svg viewBox="0 0 24 24" width="28" height="28" fill="#fff" opacity="0.9">
          <path d="M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/>
        </svg>
      </div>
      <div class="icon">
        <svg viewBox="0 0 24 24" width="28" height="28" fill="#fff" opacity="0.9">
          <path d="M10 20v-6H6l8-10v6h4l-8 10z"/>
        </svg>
      </div>
      <div class="icon">
        <svg viewBox="0 0 24 24" width="28" height="28" fill="#fff" opacity="0.9">
          <circle cx="12" cy="12" r="10" stroke="#fff" stroke-width="2" fill="none"/>
        </svg>
      </div>
      <div class="dot"></div>
      <div class="icon">
        <svg viewBox="0 0 24 24" width="28" height="28" fill="#fff" opacity="0.9">
          <path d="M20 8h-3V6a5 5 0 0 0-10 0v2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2zm-5 0H9V6a3 3 0 0 1 6 0v2z"/>
        </svg>
      </div>
      <div class="icon" style="width:auto; font-size:32px; opacity:0.95;">100%</div>
    </div>
  </div>

  <!-- Logo -->
  <div class="logo">
    <div class="brand">m<span class="globe">🌍</span>ndly</div>
    <div class="sub">by Pearson</div>
  </div>

  <!-- Main content -->
  <div class="content">
    <div class="label">I speak</div>
    <div class="dropdown">
      <div class="left">
        <div class="flag">[UK]</div>
        <div class="lang">English</div>
      </div>
      <svg class="chev" viewBox="0 0 24 24" fill="#fff" opacity="0.9">
        <path d="M7 10l5 5 5-5H7z"/>
      </svg>
    </div>

    <div class="label" style="margin-top: 48px;">I want to learn</div>
    <div class="big-panel">
      <div class="panel-header">
        <div class="panel-title">Select</div>
        <svg class="chev" viewBox="0 0 24 24" fill="#fff" opacity="0.9">
          <path d="M7 14l5-5 5 5H7z"/>
        </svg>
      </div>
      <div class="list">
        <div class="row disabled">
          <div class="flag">[US]</div>
          <div class="name">American English</div>
        </div>
        <div class="row disabled">
          <div class="flag">[UK]</div>
          <div class="name">English</div>
        </div>
        <div class="row">
          <div class="flag">[ES]</div>
          <div class="name">Spanish</div>
        </div>
        <div class="row">
          <div class="flag">[FR]</div>
          <div class="name">French</div>
        </div>
        <div class="row">
          <div class="flag">[DE]</div>
          <div class="name">German</div>
        </div>
        <div class="row">
          <div class="flag">[IT]</div>
          <div class="name">Italian</div>
        </div>
        <div class="row">
          <div class="flag">[RU]</div>
          <div class="name">Russian</div>
        </div>
        <div class="row">
          <div class="flag">[JP]</div>
          <div class="name">Japanese</div>
        </div>
        <div class="row">
          <div class="flag">[KR]</div>
          <div class="name">Korean</div>
        </div>
        <div class="row">
          <div class="flag">[CN]</div>
          <div class="name">Chinese</div>
        </div>
      </div>
    </div>
  </div>

  <!-- Home indicator -->
  <div class="home-indicator"></div>
</div>
</body>
</html>