-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (105 loc) · 3.13 KB
/
Copy pathindex.html
File metadata and controls
105 lines (105 loc) · 3.13 KB
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
<!DOCTYPE html>
<html>
<head>
<title>JetpackCode</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html, body, .container {
min-height: 99%;
}
body {
font-family: Arial, sans-serif;
color: black;
font-size: 24pt;
}
.container {
text-align: center;
width: 500px;
margin: auto;
}
.content {
margin: 40px 0;
}
h2 {
margin-top: 0;
}
.table {
display: table;
width: 100%;
}
.table-row {
display: table-row;
}
.table-cell {
display: table-cell;
}
.app {
margin: 0 auto;
width: 200px;
}
img {
width: 150px;
border-radius: 8px;
}
button {
font-size: 16px;
width: 180px;
height: 50px;
background-color: #33a;
color: white;
border: 0;
padding: 3px;
border-radius: 8px;
cursor: pointer;
}
.google-play {
width: 100%;
margin-bottom: -10px;
}
.privacy {
font-size: 1.2rem;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<h2>JetpackCode</h2>
<hr>
<div class="table">
<div class="table-row">
<div class="table-cell">
<div class="app">
<img src="https://lh3.googleusercontent.com/3q6-sBPJzQwi_1jjCpTBMFznKEHNY94_tqncL5Y6BkNa4eHEXJctUvl-4lrYBgoZUw">
<div>Multi Random</div>
<div>
<a href="https://play.google.com/store/apps/details?id=io.github.jetpackcode.randomcharacter"><img class="google-play" alt="Get it on Google Play" src="google-play-badge.png"></a>
<div id="web-randomgenerator"><a href="https://randomgenerator.pages.dev"><button>Open Web Preview</button></a></div>
<a class="privacy" href="multi-random/privacy">Privacy</a>
</div>
</div>
</div>
<div class="table-cell">
<div class="app">
<img src="https://play-lh.googleusercontent.com/qH2zl6xvRZgm4kqMAYjPleof1tdE3Sco3LJt0rV1PeWl298zH1AEJt1hIPZi3R3sVz8=s360-rw">
<div>Rabbit</div>
<div>
<a href="https://play.google.com/store/apps/details?id=io.github.jetpackcode.tilegame"><img class="google-play" alt="Get it on Google Play" src="google-play-badge.png"></a>
<div id="web-rabbit"><a href="https://rabbit-game.pages.dev"><button>Open Web Preview</button></a></div>
<a class="privacy" href="rabbit/privacy">Privacy</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var isAndroid = navigator.userAgent.toLowerCase().indexOf("android") > -1;
if(!isAndroid) {
document.getElementById("web-randomgenerator").style.display = 'block';
document.getElementById("web-rabbit").style.display = 'block';
}
</script>
</body>
</html>