File size: 5,225 Bytes
fa881a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html>
<head>
<meta charset="UTF-8">
<title>Google Account Settings UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #F7F7F2;
    color: #222;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #222;
    font-size: 42px;
  }
  .status-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .tiny-dot { width: 14px; height: 14px; background:#555; border-radius:50%; display:inline-block; }

  /* Top nav */
  .top-nav {
    position: absolute;
    top: 140px;
    left: 40px;
    right: 40px;
    height: 140px;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .title {
    font-size: 112px;
    font-weight: 600;
    letter-spacing: -1px;
  }

  /* Center avatar and email */
  .center-block {
    position: absolute;
    top: 460px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 36px;
  }
  .avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 28px;
  }
  .email {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
  }

  /* Sections */
  .section-list {
    position: absolute;
    top: 770px;
    left: 40px;
    right: 40px;
    border-top: 1px solid #E5E5E5;
  }
  .section {
    padding: 48px 0;
    border-bottom: 1px solid #EAEAEA;
    display: flex;
    align-items: center;
  }
  .section .icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 32px;
  }
  .section .text {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .section .title-text {
    font-size: 54px;
    font-weight: 600;
  }
  .section .sub-text {
    font-size: 36px;
    color: #666;
  }

  /* Remove account button */
  .remove-wrap {
    position: absolute;
    top: 1180px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .remove-btn {
    background: #2E6D3E;
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    padding: 34px 60px;
    border-radius: 90px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  }

  /* Bottom gesture bar */
  .gesture-bar {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 14px;
    background: #8B8B8B;
    border-radius: 8px;
    opacity: 0.8;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-left">
      <span>9:57</span>
      <span class="tiny-dot"></span>
    </div>
    <div class="status-right">
      <!-- Simple status icons -->
      <svg width="40" height="40" viewBox="0 0 24 24">
        <path d="M2 16l6-6 4 4 6-6" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
      </svg>
      <svg width="40" height="40" viewBox="0 0 24 24">
        <rect x="3" y="6" width="18" height="12" rx="2" ry="2" stroke="#333" stroke-width="2" fill="none"></rect>
        <rect x="5" y="8" width="14" height="8" fill="#333"></rect>
      </svg>
    </div>
  </div>

  <!-- Top Navigation -->
  <div class="top-nav">
    <svg width="72" height="72" viewBox="0 0 48 48">
      <path d="M30 10 L16 24 L30 38" stroke="#222" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
    </svg>
    <div class="title">Google</div>
  </div>

  <!-- Center Avatar & Email -->
  <div class="center-block">
    <div class="avatar">[IMG: Google Avatar]</div>
    <div class="email">dbwscratch.test.id2@gmail.com</div>
  </div>

  <!-- Section List -->
  <div class="section-list">
    <div class="section">
      <div class="icon"></div>
      <div class="text">
        <div class="title-text">Google Account</div>
        <div class="sub-text">Info, security & personalization</div>
      </div>
    </div>
    <div class="section">
      <div class="icon">
        <!-- Sync circular arrows -->
        <svg width="88" height="88" viewBox="0 0 48 48">
          <path d="M12 16c3-7 12-9 18-4l-4 4h10V6l-4 4C27 6 19 6 14 12c-3 3-4 6-4 10h6z" fill="#4A4A4A"></path>
          <path d="M36 32c-3 7-12 9-18 4l4-4H12v10l4-4c5 4 13 4 18-2 3-3 4-6 4-10h-6z" fill="#4A4A4A"></path>
        </svg>
      </div>
      <div class="text">
        <div class="title-text">Account sync</div>
        <div class="sub-text">Sync on for all items</div>
      </div>
    </div>
  </div>

  <!-- Remove account -->
  <div class="remove-wrap">
    <div class="remove-btn">Remove account</div>
  </div>

  <!-- Bottom gesture bar -->
  <div class="gesture-bar"></div>

</div>
</body>
</html>