-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatbot.css
107 lines (92 loc) · 2.2 KB
/
chatbot.css
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
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,500,800');
div.conversational-form
{
position: static;
}
div.conversational-form div.conversational-form-inner
{
position: static;
height: calc(100vh - 13em);
width:50em;
margin-left:auto;
margin-right:auto;
background: linear-gradient(#05122c, #0c224e);
border-radius: 1.5em;
}
@media screen and (max-width: 50em )
{
div.conversational-form div.conversational-form-inner
{
width:100%;
}
}
cf-chat-response.robot text .show {
font-size: 1.2em;
background-color: white;
font-family: Montserrat;
color: #0c224e;
margin-left: 2em;
padding: 0.5em;
border-top-right-radius: 0.5em;
border-bottom-right-radius: 0.5em;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
cf-chat-response.robot text .show:first-child {
border-top-right-radius: 0.5em;
border-bottom-right-radius: 0.5em;
border-top-left-radius: 0.5em;
}
cf-chat-response.robot text .show:last-child {
border-top-right-radius: 0.5em;
border-bottom-right-radius: 0.5em;
border-bottom-left-radius: 0.5em;
}
cf-chat-response.user text .show {
font-size: 1.2em;
background-color: white;
font-family: Montserrat;
color: #0c224e;
margin-right: 2em;
padding: 0.5em;
border-top-left-radius: 0.5em;
border-bottom-left-radius: 0.5em;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
cf-chat-response.user text .show:first-child {
border-top-left-radius: 0.5em;
border-bottom-left-radius: 0.5em;
border-top-right-radius: 0.5em;
}
cf-chat-response.user text .show:last-child {
border-top-left-radius: 0.5em;
border-bottom-left-radius: 0.5em;
border-bottom-right-radius: 0.5em;
}
cf-chat-response.user text .show:not(:only-child):not(:first-child) {
margin-top: 0;
}
cf-chat-response.robot thumb
{
width: 48px;
height: 60px;
background-color: transparent;
}
cf-chat-response.user thumb
{
width: 48px;
height: 48px;
background-color: transparent;
}
.cf-button > div{
color: #031335;
font-size: 15px;
}
div.conversational-form-inner cf-input textarea
{
border: 1px solid #BBC1CD;
color: #031335;
border-radius: 0.5em;
}
cf-