-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (63 loc) · 1.91 KB
/
index.html
File metadata and controls
65 lines (63 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<title>Jammed API</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="dns-prefetch" href="https://jammed-fonts.b-cdn.net">
<link rel="preconnect" href="https://jammed-fonts.b-cdn.net" crossorigin>
<style>
@font-face {
font-family: 'Moret Extrabold';
src: url(https://jammed-fonts.b-cdn.net/Moret-Extrabold.ttf) format("truetype");
}
@font-face {
font-family: 'Balboa Light';
src: url(https://jammed-fonts.b-cdn.net/Balboa-Light.ttf) format("truetype");
}
</style>
</head>
<body>
<div id="redoc-container"></div>
<script src="https://cdn.jsdelivr.net/npm/redoc@latest/bundles/redoc.standalone.js"> </script>
<script type="text/javascript">
(function() {
Redoc.init(
"/v2/jammed.yaml",
{
"disableSearch": true,
"theme": {
"colors": {
"primary": {
"main": "rgba(239, 76, 64, 1)",
"light": "#fbd0cd",
"dark": "#8a140c",
"contrastText": "#000"
},
"text": {
"primary": "rgba(0, 0, 0, 1)",
"secondary": "#4d4d4d"
}
},
"typography": {
"links": {
"color": "rgba(124, 185, 239, 1)",
"visited": "rgba(124, 185, 239, 1)",
"hover": "#d7eafa"
},
"fontSize": "16px",
"fontFamily": "Balboa Light, sans-serif",
"headings": {
"fontFamily": "Moret Extrabold, serif",
}
},
"menu": {
"backgroundColor": "rgba(255, 255, 255, 1)"
}
}
},
document.getElementById('redoc-container'));
})();
</script>
</body>
</html>