-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
49 lines (46 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<title>Vapor API Docs</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
html, body {
height: 100%;
background: #0d0d0d;
color: #ffffff;
padding: 0;
margin: 0;
}
.wrapper {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.main {
margin-top: -50px;
}
.title {
background-image: url(api-docs.png);
width: 300px;
height: 78px;
background-size: 300px auto;
text-indent: -9999px;
margin-bottom: 0;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="main">
<h1 class="title">Vapor API Docs</h1>
<br>
<select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value); this.selectedIndex = 0;">
<option value="">Choose package...</option>
{{Options}}
</select>
</div>
</div>
</body>
</html>