-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (107 loc) · 2.68 KB
/
Copy pathindex.html
File metadata and controls
121 lines (107 loc) · 2.68 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MonkeyCode 安装包下载</title>
<style>
:root {
color-scheme: light dark;
--bg: #0f1115;
--card: #171a21;
--text: #f5f7fb;
--muted: #a6afc3;
--accent: #19e28f;
--border: rgba(255,255,255,0.08);
}
@media (prefers-color-scheme: light) {
:root {
--bg: #f4f7fb;
--card: #ffffff;
--text: #111827;
--muted: #5b6475;
--border: rgba(17,24,39,0.08);
}
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: radial-gradient(circle at top, rgba(25,226,143,0.14), transparent 30%), var(--bg);
color: var(--text);
display: grid;
place-items: center;
padding: 24px;
}
.card {
width: min(720px, 100%);
background: var(--card);
border: 1px solid var(--border);
border-radius: 24px;
padding: 28px;
box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
h1 {
margin: 0 0 12px;
font-size: clamp(28px, 4vw, 40px);
line-height: 1.1;
}
p {
margin: 0;
color: var(--muted);
line-height: 1.6;
}
.actions {
display: grid;
gap: 14px;
margin-top: 24px;
}
.button {
display: block;
width: 100%;
text-decoration: none;
text-align: center;
padding: 16px 18px;
border-radius: 16px;
font-weight: 700;
font-size: 16px;
transition: transform 0.15s ease, opacity 0.15s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); opacity: 0.9; }
.primary {
background: var(--accent);
color: #062313;
}
.secondary {
background: transparent;
color: var(--text);
border: 1px solid var(--border);
}
.meta {
margin-top: 20px;
padding: 16px;
border-radius: 16px;
background: rgba(127,127,127,0.08);
color: var(--muted);
font-size: 14px;
line-height: 1.7;
word-break: break-all;
}
</style>
</head>
<body>
<main class="card">
<h1>MonkeyCode 安卓安装包</h1>
<p>点击下面按钮直接下载最终可用版本 APK。</p>
<section class="actions">
<a class="button primary" href="/download/apk">下载 APK</a>
</section>
<section class="meta">
<div>文件名:<code>MonkeyCode_latest.apk</code></div>
<div>下载后直接安装即可</div>
</section>
</main>
</body>
</html>