File size: 9,069 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
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<html>
<head>
<meta charset="UTF-8">
<title>Mobile UI - Google Account Sheet</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: #0F1212;
    color: #EDEDED;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #DADADA;
    font-size: 46px;
  }
  .status-right {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  .dot { width: 14px; height: 14px; background:#CFCFCF; border-radius:50%; display:inline-block; }

  /* App bar */
  .app-bar {
    position: absolute;
    top: 120px;
    left: 0;
    width: 1080px;
    height: 140px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    gap: 28px;
    color: #EDEDED;
  }
  .hamburger {
    width: 72px; height: 72px; border-radius: 18px; display:flex; align-items:center; justify-content:center;
  }
  .hamburger svg { width: 56px; height: 56px; fill: none; stroke: #EDEDED; stroke-width: 10; }
  .title {
    font-size: 64px; font-weight: 500;
  }
  .chev { margin-left: 10px; vertical-align: middle; }
  .app-actions { margin-left: auto; display: flex; gap: 36px; align-items: center; }
  .icon-btn svg { width: 64px; height: 64px; fill: none; stroke: #EDEDED; stroke-width: 10; }
  .avatar {
    width: 88px; height: 88px; border-radius: 50%;
    background: #503F36; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 52px; color: #F2EAE6;
  }

  /* Calendar content placeholders */
  .calendar {
    position: absolute;
    top: 260px;
    left: 0;
    width: 1080px;
    height: 2140px;
    padding: 24px 32px 24px 32px;
    box-sizing: border-box;
  }
  .event-bar {
    width: 1016px;
    height: 100px;
    background: #2D5A54;
    border-radius: 28px;
    display: flex; align-items: center; padding: 0 24px;
    font-size: 44px; color: #CFE6DF; margin-bottom: 24px;
  }
  .event-card {
    width: 1016px; height: 280px; background: #203C68; border-radius: 36px;
    margin-bottom: 24px; padding: 24px; box-sizing: border-box; color: #D5E2F6;
  }
  .event-title { font-size: 48px; margin-bottom: 12px; }
  .event-time { font-size: 40px; opacity: 0.8; }
  .month-footer {
    position: absolute; bottom: 160px; left: 32px; font-size: 64px; color: #EDE0C8;
  }
  .plus-btn {
    position: absolute; bottom: 120px; right: 40px; width: 120px; height: 120px; border-radius: 28px;
    background: #1E2521; display: flex; align-items: center; justify-content: center; border: 1px solid #2E3A33;
  }
  .plus-btn svg { width: 72px; height: 72px; stroke: #EDEDED; stroke-width: 12; fill: none; }

  /* Overlay sheet */
  .overlay {
    position: absolute;
    left: 40px;
    top: 220px;
    width: 1000px;
    background: #222A24;
    border-radius: 44px;
    padding: 28px 0 24px 0;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    border: 1px solid #2F3B33;
  }
  .overlay-header {
    position: relative;
    text-align: center;
    font-size: 72px;
    font-weight: 700;
    padding-top: 12px;
    color: #F3F3F3;
  }
  .close-btn {
    position: absolute; left: 24px; top: 10px; width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
  }
  .close-btn svg { width: 52px; height: 52px; stroke: #EDEDED; stroke-width: 10; fill: none; }
  .overlay-body {
    margin-top: 12px;
    padding: 20px 28px 10px 28px;
  }
  .account-row {
    display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 24px;
    padding: 20px; border-radius: 28px;
    background: rgba(255,255,255,0.04);
  }
  .account-avatar {
    width: 96px; height: 96px; border-radius: 50%;
    background:#5B4A42; display:flex; align-items:center; justify-content:center;
    font-size: 56px; font-weight: 700; color:#F3ECE7; position: relative;
  }
  .photo-badge {
    position: absolute; right: -6px; bottom: -6px; width: 40px; height: 40px; border-radius: 50%;
    background: #1D2520; border: 2px solid #384439; display:flex; align-items:center; justify-content:center;
  }
  .photo-badge svg { width: 26px; height: 26px; stroke:#C9D1CA; stroke-width: 8; fill: none; }
  .account-name { font-size: 52px; font-weight: 600; }
  .account-email { font-size: 40px; color: #C9CDC9; margin-top: 6px; }
  .manage-btn {
    margin: 24px 20px 16px 20px;
    padding: 26px 28px; text-align: center; border-radius: 24px;
    border: 2px solid #4B5A50; color: #EDEDED; font-size: 46px; font-weight: 500;
    background: rgba(255,255,255,0.02);
  }
  .option {
    display: flex; align-items: center; gap: 24px;
    padding: 26px 24px; font-size: 48px; color: #EDEDED;
    border-top: 1px solid #334037;
  }
  .option:first-of-type { border-top: none; }
  .option svg { width: 56px; height: 56px; stroke: #EDEDED; stroke-width: 10; fill: none; }
  .overlay-footer {
    padding: 22px 32px;
    text-align: center;
    font-size: 40px;
    color: #C7CEC6;
    border-top: 1px solid #334037;
  }
  .bullet { margin: 0 16px; opacity: 0.6; }

</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>9:55</div>
    <div class="status-right">
      <span class="dot"></span>
      <span class="dot"></span>
      <span class="dot"></span>
      <span class="dot"></span>
      <svg width="42" height="42" viewBox="0 0 24 24">
        <rect x="2" y="6" width="16" height="12" rx="2" stroke="#DADADA" fill="none" stroke-width="2"></rect>
        <rect x="4" y="8" width="12" height="8" rx="1" fill="#DADADA"></rect>
      </svg>
    </div>
  </div>

  <!-- App bar -->
  <div class="app-bar">
    <div class="hamburger">
      <svg viewBox="0 0 24 24">
        <path d="M3 6h18M3 12h18M3 18h18"></path>
      </svg>
    </div>
    <div class="title">September
      <svg class="chev" width="40" height="40" viewBox="0 0 24 24">
        <path d="M6 9l6 6 6-6" stroke="#EDEDED" stroke-width="3" fill="none"></path>
      </svg>
    </div>
    <div class="app-actions">
      <div class="icon-btn">
        <svg viewBox="0 0 24 24">
          <circle cx="11" cy="11" r="7"></circle>
          <path d="M21 21l-4.5-4.5"></path>
        </svg>
      </div>
      <div class="icon-btn">
        <svg viewBox="0 0 24 24">
          <rect x="4" y="3" width="16" height="18" rx="2"></rect>
          <path d="M8 1v4M16 1v4M4 8h16"></path>
        </svg>
      </div>
      <div class="avatar">C</div>
    </div>
  </div>

  <!-- Calendar content behind overlay -->
  <div class="calendar">
    <div class="event-bar">Milad un-Nabi/Id-e-Milad</div>

    <div class="event-card">
      <div class="event-title">Dinner out</div>
      <div class="event-time">[IMG: Table setting illustration]</div>
    </div>

    <div class="event-card" style="background:#213760;">
      <div class="event-title">Meeting</div>
      <div class="event-time">5:30 – 6:30 PM</div>
    </div>

    <div class="event-card" style="background:#223253;">
      <div class="event-title">Pet care</div>
      <div class="event-time">7 – 8 PM</div>
    </div>
  </div>
  <div class="month-footer">October 2023</div>
  <div class="plus-btn">
    <svg viewBox="0 0 24 24">
      <path d="M12 5v14M5 12h14"></path>
    </svg>
  </div>

  <!-- Overlay sheet -->
  <div class="overlay">
    <div class="overlay-header">
      <div class="close-btn">
        <svg viewBox="0 0 24 24">
          <path d="M5 5l14 14M19 5L5 19"></path>
        </svg>
      </div>
      Google
    </div>

    <div class="overlay-body">
      <div class="account-row">
        <div class="account-avatar">
          C
          <div class="photo-badge">
            <svg viewBox="0 0 24 24">
              <path d="M5 7h14v10H5z"></path>
              <circle cx="12" cy="12" r="3"></circle>
            </svg>
          </div>
        </div>
        <div>
          <div class="account-name">Cerebra Research</div>
          <div class="account-email">dbwscratch.test.id2@gmail.com</div>
        </div>
      </div>

      <div class="manage-btn">Manage your Google Account</div>

      <div class="option">
        <svg viewBox="0 0 24 24">
          <circle cx="9" cy="9" r="4"></circle>
          <path d="M17 7v4h4M3 20c0-4 4-6 6-6s6 2 6 6" stroke-linecap="round"></path>
        </svg>
        <div>Add another account</div>
      </div>

      <div class="option">
        <svg viewBox="0 0 24 24">
          <circle cx="9" cy="9" r="4"></circle>
          <path d="M3 20c0-4 4-6 6-6s6 2 6 6" stroke-linecap="round"></path>
          <circle cx="18" cy="18" r="3"></circle>
          <path d="M18 13v2M18 21v2M13 18h2M21 18h2"></path>
        </svg>
        <div>Manage accounts on this device</div>
      </div>
    </div>

    <div class="overlay-footer">
      Privacy Policy <span class="bullet"></span> Terms of Service
    </div>
  </div>

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