-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (57 loc) · 1.97 KB
/
index.html
File metadata and controls
67 lines (57 loc) · 1.97 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>LumaTrace Enterprise API - Developer Portal</title>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/4.15.5/swagger-ui.css" />
<style>
body {
margin: 0;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
background-color: #f4f6f8;
}
.topbar {
background-color: #3b4151;
color: #ffffff;
padding: 18px 30px;
font-size: 22px;
font-weight: 600;
letter-spacing: 0.5px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
border-bottom: 3px solid #565e74;
}
#swagger-ui {
max-width: 1200px;
margin: 30px auto;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
padding-bottom: 20px;
}
</style>
</head>
<body>
<div class="topbar">
<span style="display: flex; align-items: center;">
LumaTrace Enterprise API Documentation
</span>
</div>
<div id="swagger-ui"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/4.15.5/swagger-ui-bundle.js"></script>
<script>
window.onload = function() {
SwaggerUIBundle({
url: "./api/openapi.yaml",
dom_id: "#swagger-ui",
deepLinking: true,
docExpansion: "none",
defaultModelsExpandDepth: -1,
displayRequestDuration: true,
persistAuthorization: true,
layout: "BaseLayout"
});
};
</script>
</body>
</html>