-
Notifications
You must be signed in to change notification settings - Fork 3
/
adm.html
68 lines (66 loc) · 2.19 KB
/
adm.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
<!DOCTYPE html>
<html>
<head>
<title>ADM Registry - Raiffeisenbank</title>
<!-- needed for adaptive design -->
<meta charset="utf-8"/>
<meta name="viewport"
content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700"
rel="stylesheet">
<link rel="apple-touch-icon" sizes="144x144" href="https://www.raiffeisen.ru/apple-touch-icon-114x114.png">
<link rel="shortcut icon" href="https://www.raiffeisen.ru/favicon.ico" type="image/x-icon">
<!-- ReDoc doesn't change outer page styles -->
<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="redoc_container"></div>
<script src="./node_modules/redoc/bundles/redoc.standalone.js"> </script>
<script>
// initially render first API
Redoc.init("./adm.yml",
{
"hideLOading":true,
"disableSearch":true,
"jsonSampleExpandLevel": "all",
"hideDownloadButton": true,
theme:{
breakpoints: {
small: '25rem',
medium: '50rem',
large: '75rem',
},
typography: {
fontSize: '14px',
lineHeight: '1.5em',
fontWeightRegular: '400',
fontWeightBold: '600',
fontWeightLight: '300',
fontFamily: 'Roboto, sans-serif',
smoothing: 'antialiased',
optimizeSpeed: true,
headings: {//��������� � �� ���������
fontFamily: 'Arial, sans-serif',
fontWeight: '400',
lineHeight: '1.2em',
}
},
logo: { // ��������� ��� ��������
gutter: '0px',//������� ������ ��������
},
rightPanel: {
backgroundColor: '#2B2D33',
width: '40%',
textColor: '#ffffff',
},
}
},
document.getElementById("redoc_container"));
</script>
</body>
</html>