-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdefault.htm
56 lines (48 loc) · 1.19 KB
/
default.htm
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link href="https://webchat.botframework.com/css/adaptive/botchat.css" rel="stylesheet" />
<style>
.wc-chatview-panel {
width: 400px;
margin: 0 auto;
border: 1px solid black;
}
aside {
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
position: absolute;
width: calc((100% - 420px) / 2);
right: 0;
color: #3a96dd;
}
aside div {
color: black;
}
#results h3 {
margin-top: 0;
margin-bottom: 0;
}
#results span {
color: #006621;
}
#results p {
margin-top: 0;
word-wrap: break-word;
font-weight: normal;
}
</style>
</head>
<body>
<div id="bot">
</div>
<aside>
<h1>The user might be interested in some of these related articles:</h1>
<div id="results">
<p>No insights yet!</p>
</div>
</aside>
<script src="https://webchat.botframework.com/scripts/adaptive/botchat.js"></script>
</body>
</html>