File size: 6,645 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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Permissions Screen</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #173B48; /* deep teal backdrop */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
    color: #EAF6F8;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 36px;
    box-sizing: border-box;
    color: #EAF6F8;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .status-left { font-size: 40px; }
  .status-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .status-icon svg { width: 40px; height: 40px; fill: none; stroke: #EAF6F8; stroke-width: 3; }

  /* Headings */
  .title {
    position: absolute;
    top: 300px;
    width: 100%;
    text-align: center;
    font-size: 72px;
    font-weight: 800;
  }
  .subtitle {
    position: absolute;
    top: 400px;
    width: 100%;
    text-align: center;
    font-size: 34px;
    color: #A9C2CA;
  }

  /* Cards */
  .card {
    width: 1000px;
    margin: 40px auto;
    padding: 36px 40px;
    background: #214B57;
    border-radius: 28px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25) inset;
  }
  .cards-wrap {
    position: absolute;
    top: 510px;
    width: 100%;
  }
  .icon-circle {
    width: 88px;
    height: 88px;
    border-radius: 44px;
    background: #2B5E6B;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .icon-circle svg { width: 52px; height: 52px; }

  .card-content {
    flex: 1;
  }
  .card-title {
    font-size: 40px;
    font-weight: 700;
    color: #EAF6F8;
    margin-bottom: 10px;
  }
  .card-desc {
    font-size: 30px;
    color: #96B2BB;
  }

  .toggle {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toggle.off {
    border: 3px solid #8AA3AB;
    background: transparent;
  }
  .toggle.on {
    background: #19F0B8;
  }
  .toggle.on svg { width: 44px; height: 44px; }

  /* Bottom actions */
  .actions {
    position: absolute;
    bottom: 220px;
    left: 40px;
    width: 1000px;
    display: flex;
    gap: 32px;
  }
  .btn {
    height: 120px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    box-sizing: border-box;
  }
  .btn-outline {
    width: 260px;
    border: 3px solid #A9C2CA;
    color: #EAF6F8;
    background: transparent;
  }
  .btn-primary {
    flex: 1;
    background: #19F0B8;
    color: #0E3C44;
  }

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

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">10:09</div>
    <div class="status-right">
      <div class="status-icon">
        <!-- simple signal icon -->
        <svg viewBox="0 0 24 24"><path d="M3 18h2M3 13h4M3 8h6M3 3h8" stroke-linecap="round"/></svg>
      </div>
      <div class="status-icon">
        <!-- upload/download arrows -->
        <svg viewBox="0 0 24 24">
          <path d="M7 16v-6m0 0l-3 3m3-3l3 3" stroke-linecap="round" stroke-linejoin="round"/>
          <path d="M17 8v6m0 0l-3-3m3 3l3-3" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
      <div class="status-icon">
        <!-- dot -->
        <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="2" fill="#EAF6F8"/></svg>
      </div>
      <div class="status-icon">
        <!-- wifi -->
        <svg viewBox="0 0 24 24">
          <path d="M2 8c5-4 15-4 20 0M5 12c3-2 11-2 14 0M8 16c2-1 6-1 8 0" stroke-linecap="round"/>
          <circle cx="12" cy="19" r="1.5" fill="#EAF6F8" stroke="none"/>
        </svg>
      </div>
      <div class="status-icon">
        <!-- battery -->
        <svg viewBox="0 0 26 24">
          <rect x="2" y="6" width="18" height="12" rx="2" stroke="#EAF6F8" fill="none"/>
          <rect x="22" y="9" width="2" height="6" rx="1" fill="#EAF6F8"/>
          <rect x="4" y="8" width="14" height="8" fill="#EAF6F8"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Heading -->
  <div class="title">Permissions</div>
  <div class="subtitle">Grant Windy.app permissions for an optimal experience</div>

  <!-- Cards -->
  <div class="cards-wrap">
    <div class="card">
      <div class="icon-circle">
        <!-- bell with plus -->
        <svg viewBox="0 0 24 24" fill="#EAF6F8">
          <path d="M12 3c-3 0-5 2.5-5 5.5v3.7l-1.7 1.7V16h15.4v-2.1L18 12.2V8.5C18 5.5 15 3 12 3zM10 18a2 2 0 0 0 4 0h-4z"/>
          <path d="M18.5 6.5h-2m1-1v2" stroke="#EAF6F8" stroke-width="2" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="card-content">
        <div class="card-title">Push notifications</div>
        <div class="card-desc">Never miss great conditions or important updates</div>
      </div>
      <div class="toggle off"></div>
    </div>

    <div class="card" style="margin-top: 28px;">
      <div class="icon-circle">
        <!-- location target -->
        <svg viewBox="0 0 24 24" fill="none" stroke="#EAF6F8" stroke-width="2">
          <circle cx="12" cy="12" r="6"/>
          <circle cx="12" cy="12" r="2" fill="#EAF6F8" stroke="none"/>
          <path d="M12 3v3M12 18v3M3 12h3M18 12h3" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="card-content">
        <div class="card-title">Location</div>
        <div class="card-desc">Instantly see weather for your location and view spots nearby</div>
      </div>
      <div class="toggle on">
        <svg viewBox="0 0 24 24" fill="none" stroke="#0E3C44" stroke-width="3">
          <path d="M5 12l4 4 10-10" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Actions -->
  <div class="actions">
    <div class="btn btn-outline">Skip</div>
    <div class="btn btn-primary">Allow all</div>
  </div>

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