forked from aguy1993/ssr-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 832 Bytes
/
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
<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>moehoroSSR</title>
<style>
html,body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.content {
width: 300px;
height: 300px;
margin: 0 auto;
position: relative;
top: 50%;
transform: translateY(-50%);
}
</style>
</head>
<body>
<div class="content">
<a href="dashboard.php"><img src="http://i1.piimg.com/588926/d673d7f7ea3bc9f6.png" width="100%" alt="logo"></a>
</div>
</body>
</html>