File size: 5,882 Bytes
98687c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html>
<head>
<meta charset="UTF-8">
<title>Fitbit Privacy Screen</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    position: relative;
    width: 1080px;
    height: 2400px;
    overflow: hidden;
    background: #FAFAFA;
    color: #202124;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .status-time {
    font-weight: 600;
    font-size: 44px;
    letter-spacing: 0.5px;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .icon {
    width: 44px;
    height: 44px;
  }

  /* Content */
  .content {
    position: absolute;
    top: 140px;
    left: 64px;
    right: 64px;
    bottom: 280px;
    overflow: hidden;
    padding-bottom: 40px;
  }

  .fitbit-logo {
    position: relative;
    width: 84px;
    height: 84px;
    margin-bottom: 40px;
  }
  .dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #1AA37A;
    border-radius: 50%;
  }
  /* Arrange dots roughly like Fitbit mark */
  .dot.d1 { top: 8px; left: 8px; }
  .dot.d2 { top: 8px; left: 34px; }
  .dot.d3 { top: 8px; left: 60px; }
  .dot.d4 { top: 34px; left: 8px; }
  .dot.d5 { top: 34px; left: 34px; }
  .dot.d6 { top: 34px; left: 60px; }
  .dot.d7 { top: 60px; left: 8px; }
  .dot.d8 { top: 60px; left: 34px; }
  .dot.d9 { top: 60px; left: 60px; }

  .title {
    font-size: 74px;
    line-height: 92px;
    font-weight: 700;
    margin: 0 0 30px 0;
  }
  .subtitle {
    font-size: 40px;
    line-height: 58px;
    color: #5F6368;
    margin-bottom: 70px;
  }
  .section-title {
    font-size: 50px;
    font-weight: 700;
    margin: 40px 0 24px 0;
  }
  .para {
    font-size: 38px;
    line-height: 58px;
    color: #3c4043;
    margin: 0 0 34px 0;
  }
  .link {
    color: #1AA37A;
    text-decoration: none;
    font-weight: 600;
  }

  .bullets {
    margin-top: 10px;
  }
  .bullets li {
    font-size: 38px;
    line-height: 58px;
    color: #3c4043;
    margin-bottom: 30px;
  }

  /* Bottom sheet */
  .bottom-sheet {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1080px;
    height: 240px;
    background: #F3F3F3;
    border-top: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    box-sizing: border-box;
  }
  .btn-exit {
    font-size: 42px;
    color: #1a73e8;
    background: transparent;
  }
  .btn-primary {
    background: #E6E6E6;
    color: #6E6E6E;
    font-size: 44px;
    padding: 34px 70px;
    border-radius: 80px;
    border: none;
  }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 16px;
    background: #C7C7C7;
    border-radius: 12px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-time">10:11</div>
    <div class="status-icons">
      <!-- simple icons -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M2 18l8-8 6 6 6-6v8H2z" fill="#8D8D8D"/>
      </svg>
      <svg class="icon" viewBox="0 0 24 24">
        <circle cx="12" cy="12" r="10" fill="none" stroke="#8D8D8D" stroke-width="2"/>
        <circle cx="12" cy="12" r="5" fill="#8D8D8D"/>
      </svg>
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M2 8l10-6 10 6v8l-10 6-10-6V8z" fill="none" stroke="#8D8D8D" stroke-width="2"/>
      </svg>
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M3 7h15l3 3v7a2 2 0 0 1-2 2H3V7z" fill="#8D8D8D"/>
      </svg>
    </div>
  </div>

  <!-- Content -->
  <div class="content">
    <div class="fitbit-logo">
      <div class="dot d1"></div>
      <div class="dot d2"></div>
      <div class="dot d3"></div>
      <div class="dot d4"></div>
      <div class="dot d5"></div>
      <div class="dot d6"></div>
      <div class="dot d7"></div>
      <div class="dot d8"></div>
      <div class="dot d9"></div>
    </div>

    <h1 class="title">Understand your privacy on Fitbit</h1>
    <p class="subtitle">
      Take a moment to learn what information will be collected about you, how it will be used, and the privacy controls available to you.
    </p>

    <div class="section-title">What data is collected</div>
    <p class="para">
      To set up Fitbit, some personal information is required, including your height, weight, and sex.
    </p>
    <p class="para">
      You can also provide your health and wellness data, like your activity, exercise, sleep, and heart rate.
    </p>
    <p class="para">
      You can add this information manually or by connecting devices, apps, or services to Fitbit. Data from connected devices depends on your <a href="#" class="link">device features</a>. Some features need your additional consent.
    </p>

    <div class="section-title">How Google will use this data</div>
    <p class="para">Google will use your health and wellness data to:</p>
    <ul class="bullets">
      <li>
        Provide Fitbit products and services, like <a class="link" href="#">metrics and features</a> to help you meet your goals, and let you share information with others, including information shared through Fitbit social features, or apps you connect to Fitbit
      </li>
      <li>
        Personalize Fitbit products and services, for example recommendations and insights
      </li>
    </ul>
  </div>

  <!-- Bottom Sheet -->
  <div class="bottom-sheet">
    <div class="btn-exit">Exit</div>
    <button class="btn-primary">Agree &amp; continue</button>
  </div>

  <div class="home-indicator"></div>
</div>
</body>
</html>