File size: 6,715 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
<html>
<head>
<meta charset="UTF-8">
<title>Passwords & Accounts - Android 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:#FCFCF8;
    color:#222;
  }
  /* Status bar */
  .status-bar {
    position:absolute; top:0; left:0; right:0;
    height:100px;
    padding:0 36px;
    display:flex; align-items:center; justify-content:space-between;
    font-weight:600; color:#2b2b2b;
  }
  .status-left { display:flex; align-items:center; gap:24px; }
  .status-time { font-size:44px; letter-spacing:0.5px; }
  .status-icons { display:flex; align-items:center; gap:26px; }
  .icon-dot{ width:10px; height:10px; background:#555; border-radius:50%; }
  .ic { width:40px; height:40px; }
  .ic svg { width:100%; height:100%; }
  /* Back arrow */
  .back-btn {
    position:absolute; top:120px; left:36px;
    width:70px; height:70px; display:flex; align-items:center; justify-content:center;
  }
  /* Title */
  .title {
    position:absolute; top:210px; left:48px; right:48px;
    font-size:92px; font-weight:700; line-height:1.06;
  }
  /* Sections */
  .section {
    position:absolute; left:48px; right:48px;
  }
  .sec-label {
    color:#2E7D32; font-weight:700; font-size:42px;
    margin-bottom:28px;
  }
  .row {
    display:flex; align-items:center; gap:32px;
    padding:24px 0;
    border-bottom:1px solid #E8E8E8;
  }
  .avatar {
    width:94px; height:94px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:36px; color:#fff;
  }
  .avatar.google { background:#4285F4; }
  .avatar.adobe { background:#D32F2F; border-radius:18px; }
  .avatar.airbnb { background:#FF8DA1; }
  .avatar.duo { background:#7CB342; }
  .avatar.note { background:#64B5F6; border-radius:20px; }
  .row-content { flex:1; }
  .row-title { font-size:54px; font-weight:700; }
  .row-sub { font-size:36px; color:#6A6A6A; margin-top:6px; }
  /* Autofill actions */
  .divider {
    width:2px; height:70px; background:#D8D8D8; margin:0 20px;
  }
  .gear {
    width:70px; height:70px; border-radius:14px;
    display:flex; align-items:center; justify-content:center;
  }
  .gear svg { width:60px; height:60px; fill:#2E7D32; }
  /* Positions of sections */
  #sec-passwords { top:520px; }
  #sec-autofill { top:800px; }
  #sec-accounts { top:1120px; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-left">
      <div class="status-time">9:55</div>
      <!-- Small icons mimicking Android status -->
      <div class="ic">
        <svg viewBox="0 0 24 24">
          <path d="M4 10h16v10H4z" fill="#9E9E9E"></path>
          <path d="M6 12h12v6H6z" fill="#4CAF50"></path>
        </svg>
      </div>
      <div class="ic">
        <svg viewBox="0 0 24 24">
          <path d="M12 2l4 8H8l4-8zm0 20a4 4 0 100-8 4 4 0 000 8z" fill="#9E9E9E"></path>
        </svg>
      </div>
      <div class="ic">
        <svg viewBox="0 0 24 24">
          <path d="M4 14h16v2H4zm3-4h10v2H7zm5-4h0" fill="#9E9E9E"></path>
        </svg>
      </div>
      <div class="icon-dot"></div>
    </div>
    <div class="status-icons">
      <div class="ic">
        <svg viewBox="0 0 24 24">
          <path d="M2 18h20v2H2zM6 11l6-6 6 6" fill="#9E9E9E"></path>
        </svg>
      </div>
      <div class="ic">
        <svg viewBox="0 0 24 24">
          <path d="M3 8h18v8H3z" fill="#9E9E9E"></path>
          <path d="M20 4v2M4 4v2" stroke="#9E9E9E" stroke-width="2"></path>
        </svg>
      </div>
      <div class="ic">
        <svg viewBox="0 0 24 24">
          <path d="M6 18h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2z" fill="#9E9E9E"></path>
          <path d="M20 6v12M4 6v12" stroke="#9E9E9E"></path>
        </svg>
      </div>
    </div>
  </div>

  <!-- Back button -->
  <div class="back-btn">
    <svg viewBox="0 0 24 24">
      <path d="M15 19L8 12l7-7" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
    </svg>
  </div>

  <!-- Title -->
  <div class="title">Passwords & accounts</div>

  <!-- Passwords section -->
  <div class="section" id="sec-passwords">
    <div class="sec-label">Passwords</div>
    <div class="row">
      <div class="avatar google">G</div>
      <div class="row-content">
        <div class="row-title">Google</div>
        <div class="row-sub">5 passwords</div>
      </div>
    </div>
  </div>

  <!-- Autofill service section -->
  <div class="section" id="sec-autofill">
    <div class="sec-label">Autofill service</div>
    <div class="row" style="border-bottom:none;">
      <div class="avatar google">G</div>
      <div class="row-content">
        <div class="row-title">Google</div>
      </div>
      <div class="divider"></div>
      <div class="gear">
        <svg viewBox="0 0 24 24">
          <path d="M12 8a4 4 0 110 8 4 4 0 010-8zm8.7 3l-1.9-.5c-.2-.6-.5-1.2-.8-1.7l1.1-1.6-1.7-1.7-1.6 1.1c-.5-.3-1.1-.6-1.7-.8L13 2.3h-2L9.9 4c-.6.2-1.2.5-1.7.8L6.6 3.7 4.9 5.4l1.1 1.6c-.3.5-.6 1.1-.8 1.7L3.3 9h-2l.3 2 1.9.5c.2.6.5 1.2.8 1.7l-1.1 1.6 1.7 1.7 1.6-1.1c.5.3 1.1.6 1.7.8l.5 1.9h2l.5-1.9c.6-.2 1.2-.5 1.7-.8l1.6 1.1 1.7-1.7-1.1-1.6c.3-.5.6-1.1.8-1.7l1.9-.5.3-2h-2z" fill="#2E7D32"></path>
        </svg>
      </div>
    </div>
  </div>

  <!-- Accounts section -->
  <div class="section" id="sec-accounts">
    <div class="sec-label">Accounts for Owner</div>

    <div class="row">
      <div class="avatar adobe">A</div>
      <div class="row-content">
        <div class="row-title">dbwscratch.test.id2@gmail.com</div>
        <div class="row-sub">Adobe</div>
      </div>
    </div>

    <div class="row">
      <div class="avatar airbnb">A</div>
      <div class="row-content">
        <div class="row-title">dbwscratch.test.id2@gmail.com</div>
        <div class="row-sub">Airbnb</div>
      </div>
    </div>

    <div class="row">
      <div class="avatar duo">D</div>
      <div class="row-content">
        <div class="row-title">Duolingo</div>
        <div class="row-sub">Duolingo</div>
      </div>
    </div>

    <div class="row">
      <div class="avatar note">n</div>
      <div class="row-content">
        <div class="row-title">note</div>
        <div class="row-sub">Easy Notes</div>
      </div>
    </div>

    <div class="row" style="border-bottom:none;">
      <div class="avatar google">G</div>
      <div class="row-content">
        <div class="row-title">dbwscratch.test.id2@gmail.com</div>
        <div class="row-sub">Google</div>
      </div>
    </div>
  </div>

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