-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (51 loc) · 839 Bytes
/
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
#package {
background: #66FFFF;
border: 2px;
margin: 0 auto;
width: 600px;
}
#chatlogPackage {
background: #FFFFFF;
border: 1px;
margin: 0 auto;
width: 400px;
height: 400px;
margin-bottom: 50px;
scroll-behavior: auto;
overflow: auto;
box-sizing: border-box;
padding-bottom: 120px;
}
.right {
float: right;
background-color: green;
border-radius: 15px;
display: block;
clear:both;
padding: 10px ;
margin-left: 200px;
margin-right: 20px;
}
.left {
float: left;
border-radius: 15px;
background-color: yellow;
display: block;
clear:both;
padding: 10px;
margin-right: 200px;
margin-left: 20px;
}
#usermessage {
width: 400px;
margin-left: 98px;
margin-bottom: 50px;
float: top;
}
h1 {
margin-left: 100px;
margin-top: 50px;
}
#chatting {
text-align: right;
}