Skip to content

Commit d2eb76c

Browse files
authored
1 parent 2c9b582 commit d2eb76c

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

ios/enable.html

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>iOS Safari Extension Guide</title>
7+
<style>
8+
body {
9+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
10+
display: flex;
11+
justify-content: flex-start;
12+
align-items: flex-end;
13+
min-height: 100vh;
14+
}
15+
.content {
16+
padding: 20px;
17+
max-width: 70%;
18+
}
19+
.logo {
20+
width: 60px;
21+
height: 60px;
22+
margin-bottom: 10px;
23+
}
24+
.instructions {
25+
font-size: 14px;
26+
padding-left: 20px;
27+
margin-bottom: 10px;
28+
}
29+
.instructions li {
30+
margin-bottom: 5px;
31+
}
32+
.arrow {
33+
width: 100px;
34+
height: 100px;
35+
}
36+
</style>
37+
</head>
38+
<body>
39+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 800" class="arrow">
40+
<defs>
41+
<marker id="arrowhead" markerWidth="10" markerHeight="7" refX="0" refY="3.5" orient="auto">
42+
<polygon points="0 0, 10 3.5, 0 7" />
43+
</marker>
44+
</defs>
45+
<path d="M150 200 Q 50 400, 50 750" fill="none" stroke="black" stroke-width="2" marker-end="url(#arrowhead)" />
46+
</svg>
47+
<div class="content">
48+
<img src="https://github.com/refined-github/refined-github/blob/main/media/icon.png?raw=true" alt="Refined GitHub" class="logo" width="32">
49+
<ol class="instructions">
50+
<li>To enable the extension, tap this icon</li>
51+
<li>Select "Manage Extensions"</li>
52+
</ol>
53+
</div>
54+
</body>
55+
</html>

0 commit comments

Comments
 (0)