-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (108 loc) · 1.89 KB
/
style.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#messages.container {
padding: 0 !important;
}
.toast-header {
padding: .2rem .75rem !important;
}
.toast-body {
position: relative;
}
.btn-primary {
border: none !important;
}
.card {
border: none !important;
}
.card-body {
padding: 0.7rem !important;
}
.customer-card, .agent-card {
width: fit-content !important;
}
.customer-card {
margin-left: auto !important;
border-radius: 10px 0 10px 10px;
}
.agent-card {
background: rgb(229, 229, 229);
margin-right: auto !important;
border-radius: 0 10px 10px 10px;
}
.typingIndicatorContainer {
display: flex;
flex: none;
align-items: flex-end;
margin: .25rem;
}
.typingIndicatorBubble {
display: flex;
align-items: center;
justify-content: center;
width: 52px;
height: 40px;
margin: 0 8px;
border-radius: 12px;
}
.typingIndicatorBubbleDot {
width: 4px;
height: 4px;
margin-right: 4px;
border-radius: 50%;
animation-name: bounce;
animation-duration: 1.3s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
.typingIndicatorBubbleDot:first-of-type {
margin: 0 4px;
}
.typingIndicatorBubbleDot:nth-of-type(2) {
animation-delay: 0.15s;
}
.typingIndicatorBubbleDot:nth-of-type(3) {
animation-delay: 0.3s;
}
@keyframes bounce {
0%,
60%,
100% {
transform: translateY(0);
}
30% {
transform: translateY(-4px);
}
}
.separator {
display: flex;
align-items: center;
text-align: center;
color: #c8ccd0
}
.separator::before,
.separator::after {
content: '';
flex: 1;
border-bottom: 1px solid #dee2e6;
}
.separator:not(:empty)::before {
margin-right: .25em;
}
.separator:not(:empty)::after {
margin-left: .25em;
}
.alert {
padding: 0.5rem;
z-index: 100;
position: absolute;
width: 93%;
text-align: center;
transition: opacity 1s;
}
.alert-custom {
color: #084298;
background-color: #cfe2ff;
opacity: 0;
}
.errorFade {
opacity: 1;
}