-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 1.03 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Smart-WZOI</title>
</head>
<body>
<h1 class="title">cbs个人主页</h1>
<div class="div1">
<h2>smart-wzoi</h2>
<a href="https://cbs001.github.io/smart-wzoi/">传送门</a>
<p> </p>
</div>
<div class="div2">
<h2>luogu账号</h2>
<a href="https://www.luogu.com.cn/user/766573">传送门</a>
<p> </p>
</div>
<div class="div3">
<h2>wzoi账号</h2>
<a href="https://wzoi.cc/users/15074">传送门</a>
<p> </p>
</div>
</body>
</html>
<style>
h1.title{
background: #C6DCF3;
transition: all .25s ease;
text-align: center;
border-radius: 5px;
}
h1.title:hover{
background: #B6D4F3;
}
div{
background: #AEF9B8;
width: 180px;
padding: 8px;
transition: all .25s ease;
}
div:hover{
background: #9CF4A8;
}
a{
transition: all .15s ease;
text-decoration: none;
}
a:hover {
color: #fa4b4b;
}
div.div2{
transform: translate(210px, -161px);
}
div.div3{
transform: translate(420px, -322px);
}
</style>