-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchatbot.css
More file actions
109 lines (92 loc) · 1.53 KB
/
chatbot.css
File metadata and controls
109 lines (92 loc) · 1.53 KB
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
@media (min-width: 400px) {
#conversation{
height: 300px;
border: 1px solid #ccc;
padding: 4px;
overflow-y: scroll;
}
.chat_window_desc{
font-size: 12px;
}
}
@media (min-width: 1000px) {
#conversation{
height: 300px;
border: 1px solid #ccc;
padding: 4px;
overflow-y: scroll;
}
.chat_window_desc{
font-size: 14px;
}
}
input#chatInput {
padding: 4px;
/* font-size: 1em; */
}
input::placeholder {
color: black;
font-style: italic;
}
p.userRequest {
margin: 4px;
padding: 4px 10px 4px 10px;
border-radius: 4px;
/* float: left; */
display: table;
color: #efefef;
background-color: #E74C3C;
}
p.lexResponse {
margin: 4px;
padding: 4px 10px 4px 10px;
border-radius: 4px;
text-align: right;
/* float: right; */
display: table;
color: #212121;
background-color: #efefef;
font-style: italic;
}
p.lexError {
margin: 4px;
padding: 4px 10px 4px 10px;
border-radius: 4px;
text-align: right;
float: right;
background-color: #f77;
}
.logo_img{
border-radius: 50%;
height: 60px;
}
/* About Audio Box */
.white-circle {
cursor: pointer;
background-color: #fff;
box-shadow: 0 0 8px #d8dbe3;
border-radius: 100px;
/* height: 50px; */
margin: 0 auto;
/* width: 50px; */
height: 25px;
width: 25px;
display: inline-block;
}
.white-circle:hover {
box-shadow: 0 0 8px #007dbc;
}
.white-circle img {
position: relative;
/* top: 18px; */
top: 3px;
margin-left: 3px;
}
.audio-control {
position: fixed;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -50px;
text-align: center;
}