-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathredoc.html
More file actions
64 lines (61 loc) · 2.04 KB
/
Copy pathredoc.html
File metadata and controls
64 lines (61 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reolink Camera API - Redoc</title>
<style>
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.back-link {
position: fixed;
top: 20px;
right: 20px;
background: white;
padding: 10px 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
text-decoration: none;
color: #667eea;
font-weight: 600;
z-index: 1000;
transition: transform 0.2s ease;
}
.back-link:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<a href="index.html" class="back-link">← Back to Home</a>
<redoc spec-url='reolink-camera-api-openapi.yaml'
hide-download-button="false"
native-scrollbars
theme='{
"colors": {
"primary": {
"main": "#667eea"
}
},
"typography": {
"fontSize": "16px",
"fontFamily": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif",
"headings": {
"fontFamily": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif"
}
},
"sidebar": {
"backgroundColor": "#fafafa",
"textColor": "#2d3748"
},
"rightPanel": {
"backgroundColor": "#2d3748"
}
}'></redoc>
<script src="https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js"></script>
</body>
</html>