-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathst.html
More file actions
61 lines (61 loc) · 1.84 KB
/
st.html
File metadata and controls
61 lines (61 loc) · 1.84 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>银国时代工作室 | 重新出发</title>
<link rel="stylesheet" href="template">
<style>
.my-button {
background-color: #0e60ca;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border: none;
border-radius: 5px;
text-decoration: none;
}
.my-button:hover {
background-color: #0e60ca;
}
header {
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
background-color: black;
color: white;
}
header span {
display: inline-block;
padding-left: 100%;
animation: headerScroll 20s linear infinite;
}
@keyframes headerScroll {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
.centered {
display: flex;
justify-content: center;
align-items: center;
height: 72px; /* 将高度缩窄至150px */
}
</style>
</head>
<body>
<div class="bg-img"></div>
<main>
<div class="centered">
<h1>S.T.</h1>
</div>
<p>这是我的个人资料页面</p>
<p>啥都没有就放几个我的社交媒体账户吧(</p>
<a href="https://space.bilibili.com/1407673587?spm_id_from=333.1007.0.0" class="my-button" target="_blank">Bilibili</a>
<a href="https://github.com/YG-STUDIO-ST" class="my-button" target="_blank">GitHub</a>
</main>
</body>
</html>