-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchatter.css
More file actions
78 lines (67 loc) · 1.42 KB
/
chatter.css
File metadata and controls
78 lines (67 loc) · 1.42 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
* {
margin:0px;
padding:0px;
}
#chat
{
overflow: scroll;
width:300;
height:500px;
}
#user-msg-bar
{
margin:0;
padding:0;
top:0;
min-height:15px;
max-height:15px;
background: white;
width:240px;
border: 1px solid blue;
justify-content: center;
outline-color: lightgray;
}
#chatbox
{
padding:0 0 0 0;
max-width:300px;
min-width:300px;
max-height:300px;
min-height:300px;
overflow: scroll;
color:blue;
}
#Send {
border: none;
background-color: lime;
border-radius: 10%;
text-align: center;
width: 45px;
height:23px;
margin:center;
margin-left: 5px;
}
#Send:hover {
background: black;
color: white;
}
#chatbox:-webkit-scrollbar {
width:10px;
}
#chatbox::-webkits-scrollbar-track {
background:gray;
}
#chatbox::-webkits-scrollbar-thumb {
background:#f1f1f1;
}
#box {
outline: #F1F1F1;
background: white;
border-color: white;
border-radius: 20px;
height:40px;
text-align: center;
}
#chat {
float: center;
}