File size: 4,858 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Permission Request - Mock</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: #F5F7F9;
    color: #111;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 34px;
  }
  .status-icons {
    display: flex;
    gap: 18px;
    align-items: center;
  }
  .icon-wifi, .icon-battery, .icon-signal {
    width: 36px; height: 22px;
    border: 2px solid #1a1a1a; border-radius: 4px;
  }
  .icon-battery::after {
    content: "";
    position: absolute;
    width: 6px; height: 10px;
    right: -6px; top: 6px;
    background: #1a1a1a; border-radius: 2px;
  }

  /* Header */
  .header {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    padding: 0 36px;
  }
  .back-x {
    position: absolute;
    left: 30px;
    top: -4px;
    font-size: 56px;
    color: #2a2a2a;
    line-height: 1;
  }
  .title {
    margin-left: 90px;
    font-size: 64px;
    font-weight: 700;
    color: #1e1e1e;
  }

  /* Illustration placeholder */
  .illustration {
    position: absolute;
    top: 290px;
    left: 150px;
    width: 780px;
    height: 780px;
    border-radius: 390px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    text-align: center;
    padding: 24px;
    font-size: 36px;
  }

  /* Bottom button behind overlay */
  .bottom-action {
    position: absolute;
    bottom: 240px;
    left: 240px;
    width: 600px;
    height: 112px;
    background: #0C2F33;
    color: #C7E5E7;
    border-radius: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 36px;
  }

  /* Gesture bar */
  .gesture {
    position: absolute;
    bottom: 92px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 6px;
    opacity: 0.95;
  }

  /* Overlay and permission sheet */
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
  }
  .sheet {
    position: absolute;
    left: 70px;
    right: 70px;
    top: 860px;
    background: #2F3438;
    color: #FFF;
    border-radius: 56px;
    padding: 64px 56px 56px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  }
  .bell {
    width: 84px; height: 84px;
    background: #3B4146;
    border-radius: 42px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 36px;
  }
  .bell svg { width: 46px; height: 46px; fill: #A9D9FF; }
  .sheet .question {
    text-align: center;
    font-size: 56px;
    line-height: 1.2;
    margin: 8px 16px 54px;
    color: #FFFFFF;
    font-weight: 700;
  }
  .question .brand { font-weight: 800; }
  .actions {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .btn {
    width: 88%;
    height: 128px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 700;
    cursor: default;
  }
  .btn.allow {
    background: #CFEAFF;
    color: #0F3142;
  }
  .btn.deny {
    background: #CFEAFF;
    color: #0F3142;
    opacity: 0.92;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Underlying app content -->
  <div class="status-bar">
    <div>10:22</div>
    <div class="status-icons">
      <div class="icon-signal"></div>
      <div class="icon-wifi"></div>
      <div class="icon-battery"></div>
    </div>
  </div>

  <div class="header">
    <div class="back-x"></div>
    <div class="title">Permission Request</div>
  </div>

  <div class="illustration">[IMG: Cartoon person with smartwatch holding a phone]</div>

  <div class="bottom-action">SET PERMISSIONS</div>
  <div class="gesture"></div>

  <!-- Overlay + permission dialog -->
  <div class="overlay"></div>
  <div class="sheet">
    <div class="bell">
      <svg viewBox="0 0 24 24">
        <path d="M12 22a2.5 2.5 0 0 0 2.45-2h-4.9A2.5 2.5 0 0 0 12 22zm6-6V11a6 6 0 1 0-12 0v5l-2 2v1h16v-1l-2-2zm-2 .5H8V11a4 4 0 0 1 8 0v5.5z"/>
      </svg>
    </div>
    <div class="question">
      Allow <span class="brand">Fitbit</span> to send you<br>notifications?
    </div>
    <div class="actions">
      <div class="btn allow">Allow</div>
      <div class="btn deny">Don’t allow</div>
    </div>
  </div>
</div>
</body>
</html>