-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (55 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Help Bot</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="https://unpkg.com/botui@0.3.9/build/botui.min.css" />
<link rel="stylesheet" href="https://unpkg.com/botui@0.3.9/build/botui-theme-default.css" />
<style>
html, body {
background-color: #41c0cc;
background-image: linear-gradient(-90deg, #41c0cc, #41cca5);
}
.botui-container {
background-color: inherit;
}
.botui-messages-container {
}
.botui-actions-container {
padding: 0px 30px;
}
.botui-message {
}
.botui-message-content.text {
background-color: #e1fafc;
color: #404040;
}
.botui-message-content.human {
background-color: #f7ff61;
color: #404040;
}
.botui-message-content.embed {
}
.botui-message-content-link {
}
.botui-actions-text-input {
}
.botui-actions-text-submit {
}
button.botui-actions-buttons-button {
margin-top: 0px;
}
</style>
</head>
<body>
<div class="botui-app-container" id="help-bot">
<bot-ui></bot-ui>
</div>
<!-- use Vue version 2.0.5 for HTML embeds | https://github.com/botui/botui/issues/103-->
<!-- remove .min from the file name to use in development mode -->
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.10/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/botui@0.3.9/build/botui.min.js"></script>
<script src="./bot-script.js"></script>
</body>
</html>