-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·103 lines (85 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>joshuawhe's repo</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Quicksand">
<script type="text/javascript" src="https://livejs.com/live.js"></script>
<style>
body {
background: #1a1e23;
margin: 0;
}
#center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
}
#pm {
border-radius: 20%;
}
h1 {
font-family: "Quicksand", sans-serif;
font-size: 50px;
color: lightgray;
text-align: center;
margin-top: 20px;
margin-bottom: 0px;
cursor: pointer;
}
p {
font-family: "Quicksand", sans-serif;
font-size: 20px;
color: lightgray;
text-align: center;
}
.verticallinebreak {
border-left: 1px solid rgba(211, 211, 211, 0.46);
height: 30px;
margin-left: 20px;
margin-right: 20px;
}
.packagemanager {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
margin-bottom: 20px;
position: absolute;
bottom: 0;
width: 100%;
}
.packagemanager a img:hover {
transform: scale(1.1);
}
.pfp {
border-radius: 20%;
}
</style>
</head>
<body>
<div id="center">
<img class="pfp" src="CydiaIcon.png" alt="CydiaIcon" width="100" height="100">
<h1 style="color: #fff;">joshuawhe's repo</h1>
<p style="color: #fff;">The home of my tweaks<br/>
</div>
<div>
<div class="packagemanager">
<a href="sileo://source/https://repo.joshuawhe.online" target="_blank"><img id="pm" src="sileo.png"
alt="sileo" width="32" height="32"></a>
<div class="verticallinebreak"></div>
<a href="zbra://sources/add/https://repo.joshuawhe.online" target="_blank"><img id="pm" src="zbra.png"
alt="zbra" width="32" height="32"></a>
<div class="verticallinebreak"></div>
<a href="cydia://url/https://cydia.saurik.com/api/share#?source=https://repo.joshuawhe.online/" target="_blank"><img id="pm" src="cydia.png"
alt="cydia" width="32" height="32"></a>
</div>
</div>
</body>
</html>