File size: 5,229 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
<!DOCTYPE html>
<html lang="en">
<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: "Segoe UI", Arial, sans-serif; }
  #render-target {
    position: relative; overflow: hidden;
    width: 1080px; height: 2400px;
    background: #0f1d23; color: #ffffff;
    border-radius: 34px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  }

  /* Status bar */
  .statusbar {
    position: absolute; top: 36px; left: 40px; right: 40px;
    height: 60px; display: flex; justify-content: space-between; align-items: center;
    color: #fff; opacity: 0.95; font-size: 34px;
  }
  .status-icons { display: flex; gap: 18px; align-items: center; }
  .status-icons span { width: 18px; height: 18px; border-radius: 50%; background: #d9d9d9; opacity: 0.9; }

  /* Header texts */
  .header { position: absolute; top: 220px; width: 100%; text-align: center; }
  .header h1 { margin: 0; font-size: 72px; font-weight: 700; color: #cfd6db; }
  .header p { margin: 20px 160px 0; font-size: 34px; color: #7e8b93; }

  /* Decorative backdrop shapes behind the card */
  .back-shapes .shape { position: absolute; background: #132a32; border-radius: 24px; opacity: 0.35; }
  .back-shapes .s1 { top: 560px; left: 40px; width: 1000px; height: 820px; border-radius: 40px; }
  .back-shapes .s2 { top: 520px; left: 30px; width: 180px; height: 200px; }
  .back-shapes .s3 { top: 880px; left: 30px; width: 180px; height: 200px; }

  /* Permission card */
  .card {
    position: absolute; left: 50%; transform: translateX(-50%);
    top: 500px; width: 960px; padding: 48px;
    background: #4a4f54; border-radius: 40px; box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  }
  .location-icon { width: 60px; height: 60px; margin: 0 auto 30px; }
  .title { margin: 0 40px; text-align: center; font-size: 46px; line-height: 1.25; color: #eceff1; }
  .title strong { font-weight: 800; }

  .images { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; margin-bottom: 24px; }
  .placeholder-circle {
    width: 360px; height: 360px; border-radius: 50%;
    background: #E0E0E0; border: 1px solid #BDBDBD;
    display: flex; justify-content: center; align-items: center;
    color: #757575; font-size: 28px; text-align: center;
  }
  .placeholder-labels { display: flex; justify-content: space-between; margin: 16px 60px 0; font-size: 34px; }
  .placeholder-labels div { color: #e5eaf0; font-weight: 700; }
  .placeholder-labels .muted { color: #cfd6db; font-weight: 600; }

  .card-buttons { margin-top: 32px; }
  .btn {
    width: 864px; height: 120px; margin: 22px auto 0;
    border-radius: 28px; background: #b9e7f9; color: #0d0f12;
    font-size: 38px; font-weight: 600; display: flex; justify-content: center; align-items: center;
    border: 1px solid rgba(255,255,255,0.15);
  }

  /* Footer actions */
  .footer {
    position: absolute; bottom: 160px; left: 60px; right: 60px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .outline {
    width: 360px; height: 120px; border: 2px solid #60707a; border-radius: 24px;
    color: #cfd6db; font-size: 38px; display: flex; justify-content: center; align-items: center;
    background: rgba(255,255,255,0.03);
  }
  .primary {
    width: 560px; height: 120px; border-radius: 26px;
    background: #116c59; color: #ffffff; font-size: 40px; font-weight: 700;
    display: flex; justify-content: center; align-items: center; box-shadow: 0 8px 0 rgba(0,0,0,0.35);
  }

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

  <div class="statusbar">
    <div>10:08</div>
    <div class="status-icons">
      <span></span><span></span><span></span><span></span>
    </div>
  </div>

  <div class="header">
    <h1>Permissions</h1>
    <p>Grant Windy.app permissions for an optimal experience</p>
  </div>

  <div class="back-shapes">
    <div class="shape s1"></div>
    <div class="shape s2"></div>
    <div class="shape s3"></div>
  </div>

  <div class="card">
    <div class="location-icon">
      <svg viewBox="0 0 24 24" width="60" height="60">
        <path d="M12 2c-4 0-7 3-7 7 0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z" fill="#6ec1ff"></path>
      </svg>
    </div>

    <h2 class="title">Allow <strong>Windy.app</strong> to access this device’s location?</h2>

    <div class="images">
      <div class="placeholder-circle">[IMG: Precise map]</div>
      <div class="placeholder-circle">[IMG: Approximate map]</div>
    </div>

    <div class="placeholder-labels">
      <div>Precise</div>
      <div class="muted">Approximate</div>
    </div>

    <div class="card-buttons">
      <div class="btn">While using the app</div>
      <div class="btn">Only this time</div>
      <div class="btn">Don’t allow</div>
    </div>
  </div>

  <div class="footer">
    <div class="outline">Skip</div>
    <div class="primary">Allow all</div>
  </div>

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

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