forked from Testanki1/testanki1.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmore.html
More file actions
73 lines (73 loc) · 1.8 KB
/
more.html
File metadata and controls
73 lines (73 loc) · 1.8 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
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
网站待添加功能
</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap');
* {
-webkit-tap-highlight-color: transparent;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #001926;
font-family: 'Rubik', 'M PLUS 1p';
color: #FFFFFF;
}
h1 {
margin: 20px;
}
.button-container {
position: absolute;
top: 20px;
left: 20px;
}
.button {
background-color: #76FF33;
color: #001926;
border: none;
border-radius: 15px;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #5BFF26;
}
</style>
<h1>
优化服务器列表页面
</h1>
<h1>
完善排行榜页面
</h1>
<h1>
完善翻译器页面
</h1>
<h1>
音乐页面
</h1>
<h1>
服务器状态页面添加外服人数查询(外服迁移到新服务器后)
</h1>
<h1>
自动化搬运中文 Wiki(完善翻译页面后)
</h1>
<div class="button-container">
<button class="button" onclick="goBack()">返回</button>
</div>
<script>
function goBack() {
window.history.back();
}
</script>