-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
216 lines (216 loc) · 12.1 KB
/
index.html
File metadata and controls
216 lines (216 loc) · 12.1 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>Bird's Server Dashboard</title>
<!-- 网站图标 -->
<link rel="icon" href="https://img.tukuppt.com/png_preview/00/48/80/NpunIk5ciy.jpg!/fw/780" type="image/jpg">
<!-- Web App Manifest -->
<link rel="manifest" href="/manifest.json">
<style>
:root {
--bg-main: #0f172a;
--bg-card: #1e293b;
--accent: #06b6d4;
--text-primary: #f8fafc;
--text-secondary: #94a3b8;
--border-radius: 10px;
--shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
--shadow-hover: 0 0 20px rgba(6, 182, 212, 0.4);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
transition: all 0.2s ease;
}
body {
font-family: "Inter", "Microsoft YaHei", sans-serif;
background: var(--bg-main);
min-height: 100vh;
padding: 15px;
display: flex;
align-items: center;
justify-content: center;
}
.server-dashboard {
width: 100%;
max-width: 1200px;
background: var(--bg-card);
border-radius: var(--border-radius);
padding: 25px 20px;
box-shadow: var(--shadow);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.owner-header {
text-align: center;
margin: 0 auto 35px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
max-width: 500px;
}
.owner-icon {
font-size: 40px;
color: var(--accent);
margin-bottom: 10px;
}
.owner-title {
font-size: 24px;
color: var(--text-primary);
font-weight: 600;
margin-bottom: 5px;
}
.owner-subtitle {
font-size: 13px;
color: var(--text-secondary);
margin-bottom: 8px; /* 新增:为统计链接预留间距 */
}
/* 新增:UptimeRobot 统计链接样式 */
.stats-link {
font-size: 14px;
margin-top: 8px;
}
.stats-link a {
color: var(--accent);
text-decoration: underline;
}
.stats-link a:hover {
opacity: 0.8;
text-decoration: none;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
gap: 18px;
max-width: 1000px;
margin: 0 auto;
}
.service-card {
background: rgba(255, 255, 255, 0.03);
border-radius: var(--border-radius);
padding: 22px 10px;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.07);
cursor: pointer;
}
.service-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-hover);
border-color: var(--accent);
}
.service-icon {
width: 40px;
height: 40px;
margin: 0 auto 12px;
background-color: var(--accent);
mask-size: contain;
-webkit-mask-size: contain;
mask-repeat: no-repeat;
-webkit-mask-repeat: no-repeat;
mask-position: center;
-webkit-mask-position: center;
}
.icon-1panel { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E"); }
.icon-napcat { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E"); }
.icon-astrbot { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10H12V2z'/%3E%3Cpath d='M8 11v5l4-2z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10H12V2z'/%3E%3Cpath d='M8 11v5l4-2z'/%3E%3C/svg%3E"); }
.icon-openlist { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Cline x1='3' y1='6' x2='3.01' y2='6'/%3E%3Cline x1='3' y1='12' x2='3.01' y2='12'/%3E%3Cline x1='3' y1='18' x2='3.01' y2='18'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Cline x1='3' y1='6' x2='3.01' y2='6'/%3E%3Cline x1='3' y1='12' x2='3.01' y2='12'/%3E%3Cline x1='3' y1='18' x2='3.01' y2='18'/%3E%3C/svg%3E"); }
.icon-openvpn { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"); }
.service-name {
font-size: 16px;
color: var(--text-primary);
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.copyright {
text-align: center;
margin: 35px auto 0;
font-size: 12px;
color: var(--text-secondary);
opacity: 0.7;
max-width: 500px;
}
@media (min-width: 768px) {
.services-grid {
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 22px;
}
.server-dashboard {
padding: 30px 25px;
}
}
@media (min-width: 1024px) {
.services-grid {
grid-template-columns: repeat(5, 1fr);
gap: 25px;
}
.service-card {
padding: 25px 15px;
}
.owner-icon {
font-size: 42px;
}
.owner-title {
font-size: 26px;
}
.stats-link {
font-size: 15px; /* 大屏适配:微调字体大小 */
}
}
</style>
</head>
<body>
<div class="server-dashboard">
<div class="owner-header">
<div class="service-icon" style="mask-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\' fill=\'none\' stroke=\'%23000\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-linejoin=\'round\'%3E%3Crect x=\'2\' y=\'2\' width=\'20\' height=\'20\' rx=\'2\' ry=\'2\'/%3E%3Cpath d=\'M6 6h.01\'/%3E%3Cpath d=\'M6 10h.01\'/%3E%3Cpath d=\'M6 14h.01\'/%3E%3C/svg%3E'); -webkit-mask-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\' fill=\'none\' stroke=\'%23000\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-linejoin=\'round\'%3E%3Crect x=\'2\' y=\'2\' width=\'20\' height=\'20\' rx=\'2\' ry=\'2\'/%3E%3Cpath d=\'M6 6h.01\'/%3E%3Cpath d=\'M6 10h.01\'/%3E%3Cpath d=\'M6 14h.01\'/%3E%3C/svg%3E');"></div>
<h1 class="owner-title">Bird's Server</h1>
<p class="owner-subtitle">Central Management Dashboard</p>
<!-- 新增:UptimeRobot 统计链接 -->
<div class="stats-link">
<a href="https://stats.uptimerobot.com/qJpKqZ0K2T" target="_blank">查看站点监控统计</a>
</div>
</div>
<div class="services-grid">
<div class="service-card">
<a href="https://199.68.217.70:8888/imnotbird" target="_blank" style="text-decoration: none; color: inherit; display: block; width: 100%; height: 100%;">
<div class="service-icon icon-1panel"></div>
<div class="service-name">1panel</div>
</a>
</div>
<div class="service-card">
<a href="http://199.68.217.70:23333" target="_blank" style="text-decoration: none; color: inherit; display: block; width: 100%; height: 100%;">
<div class="service-icon icon-1panel"></div>
<div class="service-name">MCSManager</div>
</a>
</div>
<div class="service-card">
<a href="http://199.68.217.70:6099" target="_blank" style="text-decoration: none; color: inherit; display: block; width: 100%; height: 100%;">
<div class="service-icon icon-napcat"></div>
<div class="service-name">Napcat</div>
</a>
</div>
<div class="service-card">
<a href="http://199.68.217.70:8008" target="_blank" style="text-decoration: none; color: inherit; display: block; width: 100%; height: 100%;">
<div class="service-icon icon-astrbot"></div>
<div class="service-name">Astrbot</div>
</a>
</div>
<div class="service-card">
<a href="http://199.68.217.70:5244" target="_blank" style="text-decoration: none; color: inherit; display: block; width: 100%; height: 100%;">
<div class="service-icon icon-openlist"></div>
<div class="service-name">Openlist</div>
</a>
</div>
<div class="service-card">
<a href="https://199.68.217.70:8808" target="_blank" style="text-decoration: none; color: inherit; display: block; width: 100%; height: 100%;">
<div class="service-icon icon-openvpn"></div>
<div class="service-name">OpenVPN</div>
</a>
</div>
</div>
<div class="copyright">© 2025 Bird's Server | All Services Secured</div>
</div>
</body>
</html>