File size: 8,355 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Share Sheet - Google Fit</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: #3f454b;
  }

  /* Status bar */
  .status-bar {
    position: absolute; top: 0; left: 0; right: 0;
    height: 120px; color: #ffffff; font-size: 38px;
    display: flex; align-items: center; padding: 0 40px; opacity: 0.9;
  }
  .status-left { display: flex; align-items: center; gap: 18px; }
  .status-right { margin-left: auto; display: flex; align-items: center; gap: 22px; }
  .status-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.3); }

  /* App bar */
  .app-bar {
    position: absolute; top: 120px; left: 0; right: 0; height: 140px;
    display: flex; align-items: center; padding: 0 36px; color: #e6eef8;
  }
  .back-btn, .menu-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
  .menu-btn { margin-left: auto; }
  .fit-title { display: flex; align-items: center; gap: 24px; margin-left: 12px; }
  .fit-title .text { color: #dfe6f2; }
  .fit-title .text .main { font-size: 44px; font-weight: 700; letter-spacing: 0.2px; }
  .fit-title .text .sub { font-size: 34px; opacity: 0.8; margin-top: 6px; }
  .runner-icon { position: absolute; right: 40px; top: 210px; opacity: 0.7; }

  /* Center metric */
  .metric {
    position: absolute; top: 860px; left: 0; right: 0; text-align: center; color: #152742;
  }
  .metric .value { font-size: 180px; font-weight: 800; margin-bottom: 20px; }
  .metric .label { font-size: 48px; opacity: 0.85; }

  /* Bottom sheet */
  .sheet {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 1260px; background: #e9e6e6; border-top-left-radius: 48px; border-top-right-radius: 48px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
  }
  .sheet-handle {
    width: 140px; height: 16px; background: #c7c7c7; border-radius: 10px;
    position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  }
  .preview-card {
    position: absolute; top: 120px; left: 50%; transform: translateX(-50%);
    width: 520px; height: 360px; border-radius: 60px;
    background: #e8f0ff; border: 2px solid #cfd8ea;
    display: flex; flex-direction: column; justify-content: center; align-items: center; color: #3b5ba5;
    text-align: center;
  }
  .preview-card .big { font-size: 96px; font-weight: 700; }
  .preview-card .small { font-size: 34px; opacity: 0.8; }

  .action-row {
    position: absolute; top: 520px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 36px;
  }
  .action-btn {
    width: 420px; height: 120px; background: #f3f3f3; border: 3px solid #63666a; border-radius: 28px;
    display: flex; align-items: center; justify-content: center; gap: 20px; color: #2d3035; font-size: 44px; font-weight: 600;
  }
  .action-btn svg { width: 56px; height: 56px; }

  /* Contact suggestion */
  .suggestion {
    position: absolute; top: 700px; left: 80px; right: 80px; display: flex; align-items: center; gap: 28px;
  }
  .avatar {
    position: relative; width: 132px; height: 132px; border-radius: 50%; background: #2fa087; color: #ffffff;
    display: flex; align-items: center; justify-content: center; font-size: 64px; font-weight: 700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  .gmail-chip {
    position: absolute; right: -6px; bottom: -6px;
    width: 52px; height: 52px; border-radius: 50%; border: 3px solid #ffffff; background: #E0E0E0;
    display: flex; align-items: center; justify-content: center; color: #757575; font-size: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  .suggestion .details { color: #2d3035; }
  .details .line1 { font-size: 44px; font-weight: 600; }
  .details .line2 { font-size: 36px; opacity: 0.7; margin-top: 6px; }

  /* App list */
  .apps {
    position: absolute; top: 900px; left: 40px; right: 40px;
    display: flex; justify-content: space-around; align-items: flex-start; text-align: center;
  }
  .app {
    width: 200px;
  }
  .app .icon-circle {
    width: 140px; height: 140px; border-radius: 50%; background: #ffffff; border: 1px solid #d0d0d0;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  }
  .app .icon-circle .img-ph {
    width: 110px; height: 110px; background: #E0E0E0; border: 1px solid #BDBDBD;
    display: flex; align-items: center; justify-content: center; color: #757575; font-size: 22px; text-align: center;
    border-radius: 12px;
  }
  .app .label { font-size: 38px; color: #2d3035; }
  .app .sublabel { font-size: 30px; color: #6a6d70; margin-top: 6px; }

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

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>1:14</div>
      <div class="status-icon"></div>
    </div>
    <div class="status-right">
      <div class="status-icon"></div>
      <div class="status-icon"></div>
    </div>
  </div>

  <!-- App Bar -->
  <div class="app-bar">
    <div class="back-btn">
      <svg viewBox="0 0 24 24" width="56" height="56" fill="#ffffff">
        <path d="M15 5l-7 7 7 7" />
      </svg>
    </div>

    <div class="fit-title">
      <svg viewBox="0 0 24 24" width="72" height="72" fill="#12335a">
        <path d="M12 21s-6-3.8-8.5-6.3C1.5 12.6 2 9.7 4 8c2-1.8 4.7-1.4 6 0 1.3-1.4 4-1.8 6-.1 2.1 1.7 2.6 4.6.4 6.8C18 16 12 21 12 21z"/>
      </svg>
      <div class="text">
        <div class="main">Google Fit</div>
        <div class="sub">Dancing</div>
      </div>
    </div>

    <div class="menu-btn">
      <svg viewBox="0 0 24 24" width="48" height="48" fill="#ffffff">
        <circle cx="12" cy="5" r="2.3"></circle>
        <circle cx="12" cy="12" r="2.3"></circle>
        <circle cx="12" cy="19" r="2.3"></circle>
      </svg>
    </div>

    <div class="runner-icon">
      <svg viewBox="0 0 24 24" width="54" height="54" fill="#122a4d">
        <path d="M13 4a2 2 0 110 4 2 2 0 010-4zm-4 7l3 1 2 3 3 1-1 2-4-1-2-3-3 3-2-2 4-4z"/>
      </svg>
    </div>
  </div>

  <!-- Metric -->
  <div class="metric">
    <div class="value">1h</div>
    <div class="label">Active time</div>
  </div>

  <!-- Bottom sheet -->
  <div class="sheet">
    <div class="sheet-handle"></div>

    <div class="preview-card">
      <div class="big">1h</div>
      <div class="small">Active time</div>
    </div>

    <div class="action-row">
      <div class="action-btn">
        <svg viewBox="0 0 24 24">
          <path d="M5 12l4 0m6 0l4 0" stroke="#2d3035" stroke-width="2" fill="none" />
          <path d="M9 9l-3 3 3 3" fill="#2d3035"/>
        </svg>
        <div>Nearby</div>
      </div>
      <div class="action-btn">
        <svg viewBox="0 0 24 24">
          <path d="M3 21l5-2 9-9-3-3-9 9-2 5z" fill="#2d3035"/>
        </svg>
        <div>Edit</div>
      </div>
    </div>

    <div class="suggestion">
      <div class="avatar">C
        <div class="gmail-chip">M</div>
      </div>
      <div class="details">
        <div class="line1">dbwscratch</div>
        <div class="line2">test.id8@g...</div>
      </div>
    </div>

    <div class="apps">
      <div class="app">
        <div class="icon-circle">
          <div class="img-ph">[IMG: Gmail]</div>
        </div>
        <div class="label">Gmail</div>
      </div>
      <div class="app">
        <div class="icon-circle">
          <div class="img-ph">[IMG: Drive]</div>
        </div>
        <div class="label">Drive</div>
      </div>
      <div class="app">
        <div class="icon-circle">
          <div class="img-ph">[IMG: Messages]</div>
        </div>
        <div class="label">Messages</div>
      </div>
      <div class="app">
        <div class="icon-circle">
          <div class="img-ph">[IMG: Photos]</div>
        </div>
        <div class="label">Photos</div>
        <div class="sublabel">Upload to P...</div>
      </div>
    </div>

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

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