forked from Mbilse/Mbilse.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
97 lines (89 loc) · 3.3 KB
/
Copy pathcode.html
File metadata and controls
97 lines (89 loc) · 3.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的小站</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
.header {
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
margin-bottom: 40px;
}
.header h1, .header h2, .header h3 {
margin: 0 10px;
}
.button-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 10px;
}
.button {
background-color: #3498db;
color: white;
border: none;
padding: 9px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 10px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #2980b9;
}
.footer {
position: fixed; /* 固定在页面底部 */
bottom: 0; /* 距离底部0 */
width: 100%; /* 宽度为100% */
text-align: center; /* 水平居中 */
color: gray; /* 设置文字颜色为灰色 */
font-size: 18px; /* 可选:设置文字大小 */
}
.footer a{
color: cyan;
}
</style>
</head>
<body>
<h2>更多代码成品</h2>
<div class="button-container">
<button class="button" onclick="location.href='https://mbilse.github.io/qrcode'">二维码生成</button>
<button class="button" onclick="location.href='https://Mbilse.github.io/qiandu/'">偶合千度</button>
<button class="button" onclick="location.href='https://mbilse.github.io/tapple/'">渐变</button>
<button class="button" onclick="location.href='https://mbilse.github.io/aideguang'">爱得光</button>
<button class="button" onclick="location.href='https://mbilse.github.io/mbilsedos'">DOS</button>
<button class="button" onclick="location.href='https://mbilse.github.io/copilot'">Copilot</button>
<button class="button" onclick="location.href='https://mbilse.github.io/newyear'">新年烟花</button>
<button class="button" onclick="location.href='https://mbilse.github.io/host.md'">Readme</button>
<button class="button" onclick="location.href='https://mbilse.github.io/wish'">许愿池</button>
<button class="button" onclick="location.href='https://mbilse.github.io/mofang'">魔方游戏</button>
<button class="button" onclick="location.href='https://mbilse.github.io/conway'">康威游戏</button>
<button class="button" onclick="location.href='https://mbilse.github.io/pswd'">加密功能</button>
<button class="button" onclick="location.href='https://mbilse.github.io/pseudo'">反混功能</button>
<button class="button" onclick="location.href='https://mbilse.github.io/yrj'">愚人节整人</button>
<button class="button" onclick="location.href='https://mbilse.github.io/qmj'">清明传邮站</button>
<button class="button" onclick="location.href='https://mbilse.github.io/iconschr'">图标搜索</button>
<button class="button" onclick="location.href='index.html'">返回</button>
</div>
<div class="footer">
Copyright Mbilse 2025 | <a href="">梅布斯</a>
</div>
</body>
</html>