-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
97 lines (96 loc) · 3.35 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
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Index</title>
</head>
<style>
body {
background : #777;
}
.content {
width: 1024px;
height: auto;
margin: auto;
padding: 0px 10px 10px 10px;
font-size :18px;
float:none;
overflow:auto;
background-color:#f0f0f0;
}
.box {
width: 510px;
height: auto;
float: left;
background-color: #f0f0f0;
border:0px solid #ffffff;
border-right-width: 1px;
}
.titlebox {
width: 1024px;
height: 82px;
margin: auto;
padding: 5px 10px 5px 10px;
background-color:#81BEF7;
}
.titleboxleft {
width: 954px;
float:left;
}
.titleboxright {
width: 70px;
float:left;
}
.btn_link {
background-color: #555;
width: 508px;
color: white;
padding: 15px 0px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-bottom: 1px solid #111;
cursor: pointer;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s;
}
.btn_link:hover {
background-color: #1CA050;
color: white;
}
.h1 {
font-size:32px;
text-align:left;
color:#FAFAFA;
}
.a {
text-decoration:none;
color:#FAFAFA;
}
</style>
<body>
<div class="titlebox">
<div class="titleboxleft">
<h1 class="h1">实用工具集</h1>
</div>
<div class="titleboxright">
<h1 class="h1"><a class="a" href="https://github.com/hjmwwsshh/hjmwwsshh.github.io/blob/master/README.md">说明</a></h1>
</div>
</div>
<div class="content">
<div class="box">
<h3 style="text-align:center">WSGR</h3>
<a href="DamageCalculator.html" class="btn_link" style="border-left: 1px solid #111;border-right:1px solid #111;border-top:1px solid #111">伤害计算器</a>
<a href="" class="btn_link" style="border-left: 1px solid #111;border-right:1px solid #111">...</a>
</div>
<div class="box" >
<h3 style="text-align:center">MiST</h3>
<a href="Mist/Mist_expcal/Mist_expcal.html" class="btn_link" style="border-left: 1px solid #111;border-right:1px solid #111;border-top:1px solid #111">经验/COST计算器</a>
<a href="Mist/Mist_dmgcal/Mist_dmgcal.html" class="btn_link" style="border-left: 1px solid #111;border-right:1px solid #111">伤害计算器</a>
<a href="Mist/Mist_reinforcementCalculator/Mist_reinforcementCalculator.html" class="btn_link" style="border-left: 1px solid #111;border-right:1px solid #111">强化计算器</a>
<a href="" class="btn_link" style="border-left: 1px solid #111;border-right:1px solid #111">...</a>
</div>
</div>
</body>
</html>