-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
216 lines (185 loc) · 3.87 KB
/
Copy pathstyle.css
File metadata and controls
216 lines (185 loc) · 3.87 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/* @import url('https://fonts.googleapis.com/css?family=Cabin'); */
@import url('https://fonts.googleapis.com/css?family=Nunito');
/*Person Name */
body {
background-color: #eee;
font-family: 'Nunito', sans-serif;
}
.chatbox {
/* font-family: 'Cabin', sans-serif; */
/* font-family: 'Nunito', sans-serif; */
padding: 0px;
}
.title {
background-color: #37474f;
padding: 3% 20%;
font-size: 170%;
font-weight: 500;
color: white;
}
.content {
overflow-y: scroll;
height: 60%;
background: #eceff1;
/* background: url(bg1.jpg); */
padding: 2%;
}
.content-info{
background: #eceff1;
height: 88%;
overflow-y: scroll;
border-width: 0 2px 0 0;
border-color: #37474f;
border-style: solid;
}
.auto-reply-title{
background-color: #37474f;
padding: 1%;
font-size: 100%;
color: white;
border-width: 0 0 2px 0;
border-color: #ccc;
border-style: solid;
}
.auto-reply-block{
background: #eceff1;
height:15%;
overflow-y: scroll;
padding: 1%;
}
.auto-reply{
/* display: inline; */
border-radius: 5px;
background-color: #f50057;
color: #fff;
padding: 1%;
margin-bottom: 2px;
}
.auto-reply:hover{
background-color: #c51162;
border-radius: 5px;
border-width:2px;
border-color: #ccc;
border-style: solid;
}
.scrollbar::-webkit-scrollbar-track
{
background-color: transparent;
}
.scrollbar::-webkit-scrollbar
{
width: 5px;
background-color: #F5F5F5;
}
.scrollbar::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #555;
}
.box {
padding: 1% 5%;
margin-bottom: 2%;
min-width: 30%;
max-width: 70%;
display: block;
clear: both;
text-align: justify;
}
.user1 {
border-radius: 0 10px 10px 10px;
background-color: #fce4ec;
}
.user2 {
border-radius: 10px 0 10px 10px;
background-color: #f50057;
color: #fff;
float: right;
}
.userinput {
width: 100%;
border-radius: 7px;
border-width: 0px;
height: 2em;
margin-top: 5px;
padding: 1px 30px;
}
/*############################################### */
/* Snackbar: */
/*################################################ */
#snackbar {
visibility: hidden;
/* Hidden by default. Visible on click */
min-width: 250px;
/* Set a default minimum width */
margin-left: -125px;
/* Divide value of min-width by 2 */
background-color: #333;
/* Black background color */
color: #fff;
/* White text color */
text-align: center;
/* Centered text */
border-radius: 2px;
/* Rounded borders */
padding: 16px;
/* Padding */
position: fixed;
/* Sit on top of the screen */
z-index: 1;
/* Add a z-index if needed */
left: 50%;
/* Center the snackbar */
bottom: 30px;
/* 30px from the bottom */
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
visibility: visible;
/* Show the snackbar */
/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@-webkit-keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
@keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}