-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
134 lines (131 loc) · 3.93 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<html>
<head>
<title>Domino Data Lab API</title>
<script src="https://api.apiary.io/seeds/embed.js"></script>
<link rel="stylesheet" type="text/css" href="header.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link rel='icon' href='favicon.png' type='image/x-icon'/ >
</head>
<body style="margin: 0 0 0 0;">
<header id="customHeader" class="topbar" data-topbar>
<div class="topbar__inner container">
<div class="topbar__col topbar__col--logo">
<div class="topbar-logo">
<a title="Home" href="https://www.dominodatalab.com">
<img src="logo.png" alt="Logo" width=70% style="padding-left: 18px">
</a>
</div>
</div>
<div class="topbar__col topbar__col--nav">
<div class="topbar-nav">
<a style="text-decoration: none;" href="https://dominodatalab.com">
<p style="font-family: 'Raleway', sans-serif; color: #F4F5F9; font-size: 18; padding-right: 18px;">HOMEPAGE</p>
</a>
</div>
<div class="topbar-nav">
<a style="text-decoration: none;" href="https://tickets.dominodatalab.com">
<p style="font-family: 'Raleway', sans-serif; color: #F4F5F9; font-size: 18; padding-right: 18px;">SUPPORT</p>
</a>
</div>
<div class="topbar-nav-right">
<div id="pointer">
<p style="font-family: 'Raleway', sans-serif; color: #2D71C7; font-size: 14; padding-right: 10px; position:fixed; top: 2px; right: 10px;">New public APIs are available with Domino 5.2 and up.<br/>See the
<a href="https://docs.dominodatalab.com/en/latest/api_guide/f35c19/domino-apis/">
Domino API Guide</a>.
</p>
</div>
</div>
</div>
</div>
</header>
<script>
var embed = new Apiary.Embed({
subdomain: 'dominodatalab',
customFonts: {
googleFonts: 'https://fonts.googleapis.com/css?family=Lato'
},
hosts: [
'production'
],
preferences: {
console: false,
collapseMachineColumnByDefault: false,
displayUriParametersInHumanColumn: false,
displayHttpMethods: false,
fluidHumanColumn: false,
permalinks: true,
defaultHost: 'mock'
},
theme: {
fontFamily: 'Lato',
tableOfContents: {
section: {
fontFamily: 'Lato',
color: '#000000'
}
},
humanColumn: {
content: {
section: {
color: '#000000',
resourceGroups: {
resourceGroup: {
name: {
fontSize: '22px',
},
resources: {
resource: {
fontSize: '20px',
actions: {
action: {
fontSize: '18px',
fontWeight: '300'
}
}
}
}
}
},
title: {
fontSize: '24px'
}
}
}
},
machineColumn: {
breadcrumbs: {
line: {
backgroundColor: '#28303F'
}
},
content: {
backgroundColor: '#28303F',
breadcrumbs: {
resourceGroup: {
color: '#FFFFFF'
},
resource: {
color: '#FFFFFF'
},
action: {
color: '#FFFFFF'
}
},
blankSlate: {
title: {
color: '#FFFFFF'
},
text: {
color: '#FFFFFF'
},
link: {
color: '#FFFFFF'
}
}
}
}
}
});
</script>
</body>
</html>