blob: 50b80e8056983a7cc3f9715fc41aa3ddd234aa77 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Navan's Repo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<style>
@import url('https://fonts.googleapis.com/css?family=Montserrat');
*{
font-family: 'Montserrat', sans-serif;
}
.PageGradient {
height: 100%;
margin: 0;
background: linear-gradient(#450863, #3b3daf);
background-repeat: no-repeat;
background-attachment: fixed;
}
.MainText{
margin-top: 5%;
font-size: 5em;
color: #ffffff;
}
button {
font-size: 2em;
padding: 14px 28px;
cursor: pointer;
outline: none;
border: none;
border-radius: 10px;
}
.Cydia{
margin-top:5%;
margin-left:5%;
background-color: #BC7F63;
color: #ffffff;
}
.Cydia:hover {
background: #ffffff;
color: #BC7F63;
}
.Sileo{
margin-top:5%;
margin-left:5%;
background-color: #29D0C6;
color: #ffffff;
}
.Sileo:hover{
background-color: #ffffff;
color: #29D0C6;
}
.Zebra{
margin-top:5%;
margin-left: 5%;
background-color: #000000;
color: #ffffff;
}
.Zebra:hover{
background-color: #ffffff;
color: #000000;
}
</style>
<body class="PageGradient">
<h1 align=center class="MainText">Navan's Repo</h1><center>
<button class="Cydia" onclick="location.href='cydia://url/https://cydia.saurik.com/api/share#?source=https://navanchauhan.github.io/repo/'">Add to Cydia</button><button class="Sileo" onclick="location.href='sileo://source/https://navanchauhan.github.io/repo/'">Add to Sileo</button>
</body>
</html>
|