-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.css
69 lines (58 loc) · 1.01 KB
/
chat.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
#cdropdown-content {
display: block;
/*position: relative;*/
background-color: #f1f1f1;
min-width: 160px;
max-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: -1;
cursor: pointer;
}
#cdropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
#cdropdown-content a:hover {background-color: #ddd}
.chatbox{
position: relative;
min-width: 1200px;
/*top: ;*/
display:inline-block;
min-height: 600px;
}
.chatInp{
position: absolute;
bottom: 0px;
/*left:600px*/
}
#textInp{
left:0;
width: 800px;
}
#sendButton{
position: absolute;
left: 810px;
}
.rect{
overflow: auto;
width: 1000px;
max-height: 500px;
height: 500px;
bottom: 25px;
position: absolute;
background-color: #d3d3d3;
}
.nString{
font-size: 20px;
}
.mString{
font-size: 20px;
}
.tString{
margin-right: 10px;
display: block;
font-size: 15px;
text-align: right;
}