forked from flyX099/repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (67 loc) · 2.06 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8"/>
<title>添加越狱源</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
body {
background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
color: #333;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
padding: 40px;
background-color: #ffffff;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
border-radius: 20px;
width: 300px;
}
h1 {
font-size: 32px;
font-weight: bold;
margin: 0 0 30px;
color: #2c3e50;
}
.legend {
font-size: 24px;
font-weight: bold;
margin: 0 0 20px;
color: #34495e;
}
.button {
display: block;
margin: 15px auto;
padding: 15px 30px;
font-size: 18px;
text-decoration: none;
outline: none;
color: #fff;
background-color: #3498db;
border: none;
border-radius: 30px;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<div class="container">
<h1>学习交流</h1>
<p class="legend">添加越狱源<span class="fa fa-hand-o-down"></span></p>
<a href="sileo://source/https://flyx099.github.io/repo/" class="button">Sileo</a>
<a href="zbra://sources/add/https://flyx099.github.io/repo/" class="button">Zebra</a>
<a href="apt-repo://https://flyx099.github.io/repo/" class="button">Saily</a>
</div>
</body>
</html>