File size: 10,727 Bytes
ff1f000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<style>
  body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; color:#202124; }
  #render-target {
    width:1080px; height:2400px; position:relative; overflow:hidden;
    background: linear-gradient(#ffffff 0%, #fbfbfc 60%, #f4f6f8 100%);
    border-radius: 0;
  }

  /* Status bar */
  .status-bar {
    position:absolute; top:24px; left:0; width:100%; height:90px; padding:0 40px;
    display:flex; align-items:center; justify-content:space-between; color:#5f6368;
    font-size:40px;
  }
  .status-left { display:flex; align-items:center; gap:22px; }
  .status-right { display:flex; align-items:center; gap:26px; }
  .status-icon svg { width:42px; height:42px; fill:#5f6368; }

  /* Top actions */
  .top-actions {
    position:absolute; top:190px; right:60px; display:flex; align-items:center; gap:24px;
  }
  .circle-btn {
    width:92px; height:92px; border-radius:50%;
    background:#eceff1; color:#455a64; display:flex; align-items:center; justify-content:center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08) inset;
    font-weight:bold; font-size:40px;
  }
  .circle-btn.small { width:78px; height:78px; font-size:36px; }

  /* Progress rings */
  .progress {
    position:absolute; top:420px; left:50%; transform:translateX(-50%);
    width:560px; height:560px;
  }
  .ring { position:absolute; border-radius:50%; }
  .ring.teal {
    width:560px; height:560px;
    background: conic-gradient(#5ec5b5 82%, #e7eef3 0);
    -webkit-mask: radial-gradient(circle, transparent 64%, black 65%);
  }
  .ring.blue {
    width:480px; height:480px; top:40px; left:40px;
    background: conic-gradient(#2d55a4 68%, #e8ecf5 0);
    -webkit-mask: radial-gradient(circle, transparent 64%, black 65%);
  }
  .progress-text {
    position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center;
  }
  .progress-text .big { font-size:120px; font-weight:700; color:#5ec5b5; line-height:1; }
  .progress-text .sub { font-size:66px; font-weight:700; color:#2d55a4; margin-top:20px; }

  /* Metrics labels under ring */
  .ring-labels {
    position:absolute; top:1020px; left:0; width:100%; display:flex; align-items:center; justify-content:center; gap:120px;
    font-size:46px; color:#3c4043;
  }
  .label-item { display:flex; align-items:center; gap:18px; }
  .label-item svg { width:48px; height:48px; }

  /* Stats row */
  .stats {
    position:absolute; top:1150px; left:0; width:100%; display:flex; justify-content:center; gap:180px; text-align:center;
  }
  .stat { color:#5f6368; }
  .stat .value { font-size:70px; font-weight:700; color:#3c6bd8; }
  .stat:nth-child(1) .value { color:#2d55a4; }
  .stat:nth-child(3) .value { color:#3c6bd8; }
  .stat .label { font-size:40px; margin-top:6px; }

  /* Card base */
  .card {
    position:absolute; left:36px; right:36px; background:#fff; border-radius:28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); padding:44px;
  }
  .card h2 { margin:0 0 22px 0; font-size:58px; font-weight:700; }
  .card p { margin:0; font-size:42px; color:#5f6368; line-height:1.4; }
  .card .cta { margin-top:28px; font-size:46px; color:#2d55a4; font-weight:700; }
  .close-x { position:absolute; top:32px; right:32px; width:60px; height:60px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#5f6368; font-size:46px; }
  .card .img-placeholder {
    position:absolute; right:48px; bottom:46px; width:150px; height:150px;
    background:#E0E0E0; border:1px solid #BDBDBD; border-radius:20px;
    display:flex; align-items:center; justify-content:center; color:#757575; font-size:32px; text-align:center; padding:10px;
  }

  /* Dancing card */
  .pill { display:inline-block; padding:10px 18px; background:#e9e4ff; color:#6a64ff; border-radius:999px; font-weight:700; font-size:38px; margin-left:14px; }
  .row { display:flex; align-items:center; justify-content:space-between; }
  .chev { width:36px; height:36px; border-right:6px solid #b0b6bb; border-bottom:6px solid #b0b6bb; transform:rotate(-45deg); border-radius:2px; margin-left:20px; }
  .subline { margin-top:26px; font-size:42px; color:#5f6368; display:flex; align-items:center; gap:18px; }
  .run-icon svg { width:44px; height:44px; fill:#5f6368; }

  /* Goals card */
  .goals-row { margin-top:18px; display:flex; align-items:center; gap:16px; }
  .goal-dot {
    width:44px; height:44px; border-radius:50%; background: conic-gradient(#5ec5b5 70%, #e6eef3 0);
    -webkit-mask: radial-gradient(circle, transparent 40%, black 41%);
    box-shadow: inset 0 0 0 10px #2d55a4;
  }
  .fab {
    position:absolute; right:50px; top:-34px; width:132px; height:132px; border-radius:50%;
    background:#fff; box-shadow:0 10px 20px rgba(0,0,0,0.15); display:flex; align-items:center; justify-content:center;
  }
  .fab .plus {
    position:relative; width:84px; height:84px;
  }
  .plus::before, .plus::after {
    content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
    border-radius:6px;
  }
  .plus::before { width:84px; height:16px; background:linear-gradient(to right,#ea4335 50%, #4285f4 50%); }
  .plus::after { width:16px; height:84px; background:linear-gradient(to bottom,#fbbc05 50%, #34a853 50%); }

  /* Bottom navigation */
  .bottom-nav {
    position:absolute; bottom:86px; left:18px; right:18px; height:160px;
    background:#ffffffee; border-radius:28px; box-shadow:0 10px 24px rgba(0,0,0,0.08);
    display:flex; align-items:center; justify-content:space-around;
  }
  .nav-item { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; font-size:36px; color:#5f6368; }
  .nav-item svg { width:64px; height:64px; }
  .nav-item.active { color:#1a73e8; font-weight:700; }
  .nav-item.active .home-ring {
    width:72px; height:72px; border-radius:50%; border:6px solid #1a73e8; display:flex; align-items:center; justify-content:center;
  }
  .home-dot { width:26px; height:26px; border-radius:50%; background:#1a73e8; }

  /* Gesture bar */
  .gesture {
    position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
    width:220px; height:12px; background:#c7cdd1; border-radius:20px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>1:11</div>
      <div class="status-icon">
        <svg viewBox="0 0 24 24"><path d="M12 6c-3.3 0-6 2.7-6 6h12c0-3.3-2.7-6-6-6z"/></svg>
      </div>
    </div>
    <div class="status-right">
      <div class="status-icon">
        <svg viewBox="0 0 24 24"><path d="M2 18h20c-1.5-4.5-5.5-8-10-8S3.5 13.5 2 18z"/></svg>
      </div>
      <div class="status-icon">
        <svg viewBox="0 0 24 24"><rect x="6" y="5" width="12" height="14" rx="2" ry="2"></rect><rect x="18" y="8" width="2" height="8"></rect></svg>
      </div>
    </div>
  </div>

  <!-- Top actions -->
  <div class="top-actions">
    <div class="circle-btn small">i</div>
    <div class="circle-btn">C</div>
  </div>

  <!-- Progress rings -->
  <div class="progress">
    <div class="ring teal"></div>
    <div class="ring blue"></div>
    <div class="progress-text">
      <div class="big">115</div>
      <div class="sub">8,066</div>
    </div>
  </div>

  <!-- Labels -->
  <div class="ring-labels">
    <div class="label-item">
      <svg viewBox="0 0 24 24" fill="#35b18d"><path d="M12 21s-6-4.6-8.5-7.1C1.1 11.5 2 7.5 5.6 6.7c2-.4 3.2 1.1 4.4 2.7 1.2-1.6 2.4-3.1 4.4-2.7 3.6.8 4.5 4.8 2.1 7.2C18 16.4 12 21 12 21z"/></svg>
      <div>Heart Pts</div>
    </div>
    <div class="label-item">
      <svg viewBox="0 0 24 24" fill="#2d55a4"><path d="M7 18c2 0 3-1 4-2l3-3c1-1 2-2 4-2v-2c-3 0-4 1-5 2l-3 3c-1 1-2 2-3 2H4v2h3z"/></svg>
      <div>Steps</div>
    </div>
  </div>

  <!-- Stats -->
  <div class="stats">
    <div class="stat">
      <div class="value">969</div>
      <div class="label">Cal</div>
    </div>
    <div class="stat">
      <div class="value">0.01</div>
      <div class="label">mi</div>
    </div>
    <div class="stat">
      <div class="value">177</div>
      <div class="label">Move Min</div>
    </div>
  </div>

  <!-- Card: Sync Fit with Health Connect -->
  <div class="card" style="top:1360px;">
    <div class="close-x">×</div>
    <h2>Sync Fit with Health Connect</h2>
    <p>Share stats between Fit and your other apps, like your calories, heart rate, and body measurements</p>
    <div class="cta">Get started</div>
    <div class="img-placeholder">[IMG: Health Connect logo]</div>
  </div>

  <!-- Card: Dancing -->
  <div class="card" style="top:1710px;">
    <div class="row" style="align-items:center;">
      <h2 style="margin:0; font-size:56px;">Dancing</h2>
      <span class="pill">Active</span>
      <div style="flex:1;"></div>
      <div class="chev"></div>
    </div>
    <div class="subline">
      <span class="run-icon">
        <svg viewBox="0 0 24 24"><path d="M13 5a2 2 0 110 4 2 2 0 010-4zm-8 12l4-1 2-3 2 1 2 4h3l-3-5-2-1-2 1-2 3-2 1z"/></svg>
      </span>
      <span>Tap to see workout</span>
    </div>
  </div>

  <!-- Card: Your daily goals -->
  <div class="card" style="top:1980px; padding-bottom:120px;">
    <div class="fab"><div class="plus"></div></div>
    <h2>Your daily goals</h2>
    <p style="margin-top:6px;">Last 7 days</p>
    <div class="goals-row" style="margin-top:34px;">
      <div class="goal-dot"></div>
      <div class="goal-dot"></div>
      <div class="goal-dot"></div>
      <div class="goal-dot"></div>
      <div class="goal-dot"></div>
      <div class="goal-dot"></div>
      <div class="goal-dot"></div>
      <div class="goal-dot"></div>
      <div class="goal-dot"></div>
    </div>
  </div>

  <!-- Bottom navigation -->
  <div class="bottom-nav">
    <div class="nav-item active">
      <div class="home-ring"><div class="home-dot"></div></div>
      <div>Home</div>
    </div>
    <div class="nav-item">
      <svg viewBox="0 0 24 24" fill="#5f6368"><rect x="5" y="3" width="14" height="18" rx="2"/><line x1="8" y1="7" x2="16" y2="7" stroke="#5f6368" stroke-width="2"/><line x1="8" y1="12" x2="16" y2="12" stroke="#5f6368" stroke-width="2"/></svg>
    </div>
    <div class="nav-item">
      <svg viewBox="0 0 24 24" fill="#5f6368"><rect x="4" y="6" width="16" height="2"/><rect x="4" y="11" width="16" height="2"/><rect x="4" y="16" width="16" height="2"/></svg>
    </div>
    <div class="nav-item">
      <svg viewBox="0 0 24 24" fill="#5f6368"><circle cx="12" cy="8" r="4"/><path d="M4 20c0-4 4-6 8-6s8 2 8 6"/></svg>
    </div>
  </div>

  <div class="gesture"></div>
</div>
</body>
</html>