File size: 7,466 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
274
275
276
277
278
279
280
281
282
283
284
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Settings UI Mock</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    position: relative;
    width: 1080px;
    height: 2400px;
    overflow: hidden;
    background: #121212;
    color: #FFFFFF;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    color: #EDEDED;
    font-weight: 600;
    font-size: 42px;
    letter-spacing: 0.5px;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .status-icon svg { width: 48px; height: 48px; fill: none; stroke: #EDEDED; stroke-width: 3.5; }

  /* Search bar */
  .search-bar {
    position: absolute;
    top: 120px;
    left: 40px;
    width: 1000px;
    height: 124px;
    background: #3A3A3A;
    border-radius: 62px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .search-bar .icon {
    margin-right: 28px;
  }
  .search-bar svg {
    width: 56px; height: 56px; fill: none; stroke: #CFCFCF; stroke-width: 5;
  }
  .search-bar .placeholder {
    color: #CFCFCF;
    font-size: 46px;
    font-weight: 500;
  }

  /* List container */
  .list {
    position: absolute;
    top: 300px;
    left: 0;
    width: 100%;
    padding: 0 40px 160px;
    box-sizing: border-box;
  }
  .item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 46px 0;
  }
  .icon-box {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .icon-box svg {
    width: 74px;
    height: 74px;
    fill: none;
    stroke: #DADADA;
    stroke-width: 4.5;
  }
  .text .title {
    font-size: 54px;
    font-weight: 600;
    color: #F1F1F1;
    line-height: 1.2;
  }
  .text .subtitle {
    margin-top: 16px;
    font-size: 34px;
    color: #A9A9A9;
  }

  /* Bottom home indicator */
  .home-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 12px;
    background: #CFCFCF;
    border-radius: 8px;
    opacity: 0.8;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">10:20</div>
    <div class="status-right">
      <div class="status-icon">
        <!-- Wi-Fi icon -->
        <svg viewBox="0 0 24 24">
          <path d="M2.5 8.5C7 4.5 17 4.5 21.5 8.5" />
          <path d="M6 12c4-3 8-3 12 0" />
          <path d="M10 15.5c2-1.6 4-1.6 6 0" />
          <circle cx="12" cy="18.5" r="1.7" fill="#EDEDED" stroke="none"/>
        </svg>
      </div>
      <div class="status-icon">
        <!-- Battery icon -->
        <svg viewBox="0 0 26 24">
          <rect x="1.5" y="5" width="18" height="14" rx="2.5" />
          <rect x="21" y="9" width="3.5" height="6" rx="1.2" />
          <rect x="4" y="7.5" width="12" height="9" fill="#EDEDED" stroke="none"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Search bar -->
  <div class="search-bar">
    <div class="icon">
      <svg viewBox="0 0 24 24">
        <circle cx="10" cy="10" r="7"/>
        <path d="M15.5 15.5 L22 22"/>
      </svg>
    </div>
    <div class="placeholder">Search settings</div>
  </div>

  <!-- Settings list -->
  <div class="list">
    <div class="item">
      <div class="icon-box">
        <!-- Location pin -->
        <svg viewBox="0 0 24 24">
          <path d="M12 21c-4-6-6.5-8.5-6.5-11.5a6.5 6.5 0 1 1 13 0C18.5 12.5 16 15 12 21z"/>
          <circle cx="12" cy="9.5" r="2.5"/>
        </svg>
      </div>
      <div class="text">
        <div class="title">Location</div>
        <div class="subtitle">On - 8 apps have access to location</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-box">
        <!-- Emergency asterisk -->
        <svg viewBox="0 0 24 24">
          <path d="M12 3 L12 21"/>
          <path d="M3 12 L21 12"/>
          <path d="M5.2 5.2 L18.8 18.8"/>
          <path d="M18.8 5.2 L5.2 18.8"/>
        </svg>
      </div>
      <div class="text">
        <div class="title">Safety &amp; emergency</div>
        <div class="subtitle">Emergency SOS, medical info, alerts</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-box">
        <!-- Passwords & accounts (id card/image) -->
        <svg viewBox="0 0 24 24">
          <rect x="3" y="4" width="18" height="14" rx="2"/>
          <rect x="5.5" y="6.5" width="6" height="6" rx="1.2"/>
          <path d="M13.5 9.5h5M13.5 12.5h5"/>
        </svg>
      </div>
      <div class="text">
        <div class="title">Passwords &amp; accounts</div>
        <div class="subtitle">Saved passwords, autofill, synced accounts</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-box">
        <!-- Digital Wellbeing (heart) -->
        <svg viewBox="0 0 24 24">
          <path d="M12 20s-7-4.8-7-9.2A4.8 4.8 0 0 1 9.8 6c1.3 0 2.3.6 3.2 1.6C13.9 6.6 15 6 16.2 6A4.8 4.8 0 0 1 19 10.8C19 15.2 12 20 12 20z"/>
        </svg>
      </div>
      <div class="text">
        <div class="title">Digital Wellbeing &amp; parental controls</div>
        <div class="subtitle">Screen time, app timers, bedtime schedules</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-box">
        <!-- Google (G letter inside circle) -->
        <svg viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9"/>
          <path d="M9 8.5h4.5a3 3 0 1 1 0 6H11" />
        </svg>
      </div>
      <div class="text">
        <div class="title">Google</div>
        <div class="subtitle">Services &amp; preferences</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-box">
        <!-- Info circle -->
        <svg viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9"/>
          <path d="M12 10v6"/>
          <circle cx="12" cy="7" r="1.6"/>
        </svg>
      </div>
      <div class="text">
        <div class="title">System</div>
        <div class="subtitle">Languages, gestures, time, backup</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-box">
        <!-- Phone in rectangle -->
        <svg viewBox="0 0 24 24">
          <rect x="5" y="3.5" width="14" height="17" rx="2"/>
          <rect x="10" y="17.5" width="4" height="1.8" rx="0.9" fill="#DADADA" stroke="none"/>
        </svg>
      </div>
      <div class="text">
        <div class="title">About phone</div>
        <div class="subtitle">Pixel 5a</div>
      </div>
    </div>

    <div class="item">
      <div class="icon-box">
        <!-- Help / question mark -->
        <svg viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9"/>
          <path d="M9.5 9.3a3 3 0 0 1 5 1.7c0 1.7-1.5 2.3-2.2 2.8-.6.4-.8.8-.8 1.5"/>
          <circle cx="12" cy="17.8" r="1.3"/>
        </svg>
      </div>
      <div class="text">
        <div class="title">Tips &amp; support</div>
        <div class="subtitle">Help articles, phone &amp; chat</div>
      </div>
    </div>
  </div>

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