-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (93 loc) · 3.43 KB
/
index.html
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
<html>
<head>
<title>Macaque - UserScript Manager</title>
<link href="./resources/css/lightbox.min.css" rel="stylesheet" />
<script src="./resources/js/lightbox-plus-jquery.min.js"></script>
<script>
lightbox.option({
'imageFadeDuration': 300,
'resizeDuration': 100,
'fadeDuration': 100,
'wrapAround': true,
});
</script>
<style>
.container {
width: 800px;
margin: 0px auto;
padding: 20px;
}
body {
font-family: Menlo-Regular, Courier New;
background-color: #282a36 !important;
color: white;
}
h1 {
text-decoration: underline;
}
p {
margin-left: 5px;
}
a {
color: grey;
}
a:hover {
color: white;
}
#screenshots {
overflow: auto;
padding: 10px;
}
#screenshots img {
width: 320px;
margin: 7px;
border-radius: 5px;
}
#logo {
background: linear-gradient(#FFF, #F2EFEA, #FFF);
border-radius: 45px;
}
#title {
margin: 10px 0px;
}
#title h2 {
font-size: 2em;
}
#header, #footer {
justify-content: space-evenly;
}
#header, #footer, #screenshots {
margin-top: 80px;
display: flex;
}
</style>
</head>
<body>
<div class="container">
<div id="header">
<img id="logo" src="./resources/macaque-logo.png" />
<div id="title">
<h2>Macaque</h2>
<h4>Safari UserScript Manager for iOS, iPadOS and macOS</h4>
<a href="./remote.html">Remote UserScript Manager</a></br>
<a href="https://apps.apple.com/us/app/macaque/id1595306197" target="_blank">
<img src="./resources/app-store-badge.svg" style="margin-top: 40px;" />
</a>
</div>
</div>
<div id="screenshots">
<a href="./resources/screenshots/screenshot-1.PNG" data-title="UserScript Manager Page" data-lightbox="macaque"><img src="./resources/screenshots/screenshot-1.PNG" /></a>
<a href="./resources/screenshots/screenshot-2.PNG" data-title="Editor with ESLint" data-lightbox="macaque"><img src="./resources/screenshots/screenshot-2.PNG" /></a>
<a href="./resources/screenshots/screenshot-3.PNG" data-title="UserScript Configuration" data-lightbox="macaque"><img src="./resources/screenshots/screenshot-3.PNG" /></a>
<a href="./resources/screenshots/screenshot-4.PNG" data-title="GM API Tests" data-lightbox="macaque"><img src="./resources/screenshots/screenshot-4.PNG" /></a>
<a href="./resources/screenshots/screenshot-5.PNG" data-title="Extension Popup" data-lightbox="macaque"><img src="./resources/screenshots/screenshot-5.PNG" /></a>
<a href="./resources/screenshots/screenshot-6.PNG" data-title="GM Menu Command Example" data-lightbox="macaque"><img src="./resources/screenshots/screenshot-6.PNG" /></a>
<a href="./resources/screenshots/screenshot-7.PNG" data-title="GM Menu Command Example" data-lightbox="macaque"><img src="./resources/screenshots/screenshot-7.PNG" /></a>
<a href="./resources/screenshots/screenshot-8.PNG" data-title="UserScript Logs" data-lightbox="macaque"><img src="./resources/screenshots/screenshot-8.PNG" /></a>
</div>
<div id="footer">
<a href="./privacy.html">Macaque Privacy Policy</a>
</div>
</div>
</body>
</html>