forked from eeditiones/tei-publisher-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.html
41 lines (40 loc) · 1.56 KB
/
api.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
<!DOCTYPE html>
<html>
<head>
<title>TEI Publisher Webcomponents API</title>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<link rel="shortcut icon" type="image/png" href="images/favicon-16.png" sizes="16x16" />
<link rel="shortcut icon" type="image/png" href="images/favicon-24.png" sizes="24x24" />
<link rel="shortcut icon" type="image/png" href="images/favicon-32.png" sizes="32x32" />
<link rel="shortcut icon" type="image/png" href="images/favicon-64.png" sizes="64x64" />
<!--scripts-->
<script type="module" src="src/docs/pb-component-docs.js"></script>
<!--/scripts-->
<style type="text/css">
@import url('https://fonts.googleapis.com/css?family=Oswald|Roboto&display=swap');
body {
margin: 0;
font-family: 'Roboto', 'Noto', sans-serif;
--pb-header-background-color: #35424b;
--pb-header-color: #F0F0F0;
}
#drawer {
background-color: #d1dae0;
}
.logo {
background-color: #35424b;
}
.logo img {
width: 140px;
height: 60px;
}
</style>
</head>
<body>
<pb-component-docs file="pb-elements.json" demo="demo/demos.json">
<div slot="logo" class="logo">
<img src="images/tei-publisher-logo-contrast-color.svg"/>
</div>
</pb-component-docs>
</body>
</html>