-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
158 lines (154 loc) · 3.07 KB
/
style2.css
File metadata and controls
158 lines (154 loc) · 3.07 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
* {
margin: 0;
padding: 0;
box-sizing:border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
background: rgb(172, 226, 226);
}
.chatbot-toggler {
position: fixed;
right: 40px;
bottom: 35px;
height: 50px;
width: 50px;
color: #fff;
border: none;
display: flex;
align-items: center;
justify-content: center;
outline: none;
cursor: pointer;
background: rgb(12, 53, 133);
border-radius: 50%;
}
.chatbot-toggler span {
position: absolute;
}
.show-chatbot .chatbot-toggler span:first-child,
.chatbot-toggler span:last-child {
opacity: 0;
}
.show-chatbot .chatbot-toggler span:last-child {
opacity: 1;
}
.chatbot{
width:420px;
transform: scale(0.5);
opacity: 0;
pointer-events: none;
right: 40px;
overflow: hidden;
position:fixed;
bottom:100px;
background: #fff;
border-radius: 15px;
box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5);
}
.show-chatbot .chatbot {
transform: scale(1);
opacity: 1;
pointer-events: auto;
}
.chatbot header{
background: rgb(12, 53, 133);
padding: 16px 0;
text-align: center;
position: relative;
}
.chatbot header h2{
color: #fff;
font-size: 1.4rem;
}
.chatbot header span {
position: absolute;
right: 20px;
top: 50%;
color: #fff;
cursor: pointer;
display: none;
transform: translateY(-50%);
}
.chatbot .chatbox{
height: 510px;
overflow: auto;
padding: 30px 20px 70px;
}
.chatbox .chat{
display: flex;
}
.chatbox .incoming span{
height: 32px;
width: 32px;
color: #fff;
align-self: flex-end;
background: rgb(12, 53, 133);
text-align: center;
line-height: 32px;
border-radius: 4px;
margin: 0 10px 7px 0;
}
.chatbox .outgoing {
margin: 20px 0;
justify-content: flex-end;
}
.chatbox .chat p{
color: #fff;
max-width: 75%;
font-size: 0.95rem;
padding: 12px 16px;
border-radius: 10px 10px 0 10px;
background: rgb(12, 53, 133);
}
.chatbox .incoming p{
color: #000;
background: #f2f2f2;
border-radius: 10px 10px 10px 0;
}
.chatbot .chat-input {
position: absolute;
bottom: 0;
width: 100%;
display: flex;
gap: 5px;
background: #fff;
padding:5px 20px;
border-top: 1px solid #ccc;
}
.chat-input textarea {
height: 55px;
width: 100%;
border: none;
outline: none;
font-size: 0.95rem;
resize: none;
padding: 16px 15px 16px 0;
}
.chat-input span {
align-self: flex-end;
height: 55px;
line-height: 55px;
color: rgb(12, 53, 133);
font-size: 1.35rem;
cursor: pointer;
visibility: hidden;
}
.chat-input textarea:valid ~ span {
visibility: visible;
}
@media(max-width:490px){
.chatbot {
right: 0;
bottom: 0;
width: 100%;
height: 100%;
border-radius: 0;
}
.chatbot .chatbox {
height: 90%;
}
.chatbot header span {
display: block;
}
}