-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (86 loc) · 2.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>200 OK | HentaiVerse Monster Database Server</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<link rel="icon" type="image/ico" href="https://cdn.skk.moe/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="https://cdn.skk.moe/favicon/favicon-32x32.png">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
<meta name="format-detection" content="telephone=no">
<style>
.container {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
cursor: default;
user-select: none;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
padding: 0 20px;
}
.main {
height: 100%;
display: flex;
-webkit-box-pack: center;
justify-content: center;
align-items: center;
-webkit-box-align: center;
flex-direction: column;
}
section {
display: flex;
justify-content: center;
-webkit-box-align: center;
align-items: center;
flex-direction: column;
height: 40px;
flex-direction: row;
}
.code {
font-size: 28px;
font-weight: 500;
display: block;
text-align: center;
width: 200px;
border-bottom: 0;
border-right: 1px solid #eaeaea;
padding: 0 20px 0 20px;
width: auto;
height: 100%;
line-height: 40px;
}
.msg {
margin: 20px 0 0 0;
height: 100%;
line-height: 40px;
font-size: 14px;
font-weight: 400;
margin: 0;
padding-left: 20px;
}
main {
text-align: center
}
</style>
</head>
<body>
<div class="container">
<div class="main">
<section>
<span class="code">200</span>
<p class="msg">OK</p>
</section>
<main>
<p>HentaiVerse Monster Database</p>
</main>
</div>
</div>
</body>
</html>