File size: 5,973 Bytes
98687c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Settings UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, sans-serif; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 110px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #202124;
    font-size: 36px;
    background: #ffffff;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #202124;
  }
  .status-icons svg { width: 40px; height: 40px; }

  /* App bar */
  .app-bar {
    position: absolute;
    top: 110px;
    left: 0;
    width: 1080px;
    height: 140px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    background: #ffffff;
    box-sizing: border-box;
    border-bottom: 1px solid #e6e6e6;
  }
  .back-btn {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
  }
  .app-title {
    font-size: 64px;
    font-weight: 600;
    color: #202124;
  }

  /* Content area */
  .content {
    position: absolute;
    top: 250px;
    left: 0;
    width: 1080px;
    height: 2020px;
    overflow: hidden;
    background: #f7f9fc;
  }
  .content-inner {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 36px 40px 160px 40px;
  }

  .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a73e8;
    margin: 22px 0 32px;
  }

  .row {
    position: relative;
    padding: 28px 0;
    border-bottom: 1px solid #eef1f5;
  }
  .row:last-child { border-bottom: none; }

  .label {
    font-size: 40px;
    color: #202124;
    margin-bottom: 16px;
  }
  .value {
    font-size: 38px;
    color: #6b6f76;
  }

  .avatar {
    position: absolute;
    right: 36px;
    top: 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #5d4037;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .link-row .label {
    font-size: 40px;
    color: #202124;
  }

  .subtle {
    color: #a7adb5;
  }

  .divider-space {
    height: 24px;
    background: transparent;
  }

  /* Gesture bar */
  .gesture-bar {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 16px;
    background: #9e9e9e;
    border-radius: 12px;
    opacity: 0.6;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="time">6:12</div>
    <div class="status-icons">
      <!-- Lock icon -->
      <svg viewBox="0 0 24 24">
        <path d="M7 10V7a5 5 0 0110 0v3h1a2 2 0 012 2v7a2 2 0 01-2 2H6a2 2 0 01-2-2v-7a2 2 0 012-2h1zm2 0h6V7a3 3 0 00-6 0v3z" fill="#202124"/>
      </svg>
      <!-- Dot icon -->
      <svg viewBox="0 0 24 24">
        <circle cx="12" cy="12" r="3" fill="#202124"/>
      </svg>
      <!-- Search icon -->
      <svg viewBox="0 0 24 24">
        <circle cx="11" cy="11" r="7" stroke="#202124" stroke-width="2" fill="none"/>
        <path d="M20 20l-4-4" stroke="#202124" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
      <!-- Wifi icon -->
      <svg viewBox="0 0 24 24">
        <path d="M2 9a16 16 0 0120 0M5 12a12 12 0 0114 0M8 15a8 8 0 018 0" stroke="#202124" stroke-width="2" fill="none" stroke-linecap="round"/>
        <circle cx="12" cy="18" r="2" fill="#202124"/>
      </svg>
      <!-- Battery with percentage -->
      <div style="display:flex; align-items:center; gap:10px;">
        <svg viewBox="0 0 28 18" width="56" height="36">
          <rect x="1" y="3" width="22" height="12" rx="2" ry="2" stroke="#202124" stroke-width="2" fill="none"/>
          <rect x="3" y="5" width="16" height="8" fill="#202124"/>
          <rect x="23" y="6" width="4" height="6" rx="1" fill="#202124"/>
        </svg>
        <span style="font-size:32px;">100%</span>
      </div>
    </div>
  </div>

  <!-- App Bar -->
  <div class="app-bar">
    <div class="back-btn">
      <svg viewBox="0 0 24 24">
        <path d="M15 5l-7 7 7 7" stroke="#202124" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="app-title">Settings</div>
  </div>

  <!-- Content -->
  <div class="content">
    <div class="content-inner">

      <div class="section-title">Account</div>

      <div class="row">
        <div class="label">Name</div>
        <div class="value">Fabio Teixeira</div>
      </div>

      <div class="row" style="min-height: 180px;">
        <div class="label">Photo</div>
        <div class="avatar">F</div>
      </div>

      <div class="row">
        <div class="label">About me</div>
        <div class="value subtle">Write a bit about yourself</div>
      </div>

      <div class="row">
        <div class="label">Email</div>
        <div class="value">fabioteixeira00123@gmail.com</div>
      </div>

      <div class="row">
        <div class="label">Country/Region</div>
        <div class="value">India</div>
      </div>

      <div class="row">
        <div class="label">I speak</div>
        <div class="value">English</div>
      </div>

      <div class="row link-row">
        <div class="label">Take Portuguese Placement Test</div>
      </div>

      <div class="row link-row">
        <div class="label">Study Plan</div>
      </div>

      <div class="divider-space"></div>

      <div class="section-title">General</div>

      <div class="row link-row">
        <div class="label">Notifications</div>
      </div>

    </div>
  </div>

  <!-- Gesture bar -->
  <div class="gesture-bar"></div>
</div>
</body>
</html>