-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
65 lines (65 loc) · 867 Bytes
/
index.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
*{
margin: 0;
padding: 0;
list-style: none;
}
.container{
width:600px;
margin: 20px auto;
}
h2{
text-align: center;
}
#ul1{
position: relative;
width:600px;
height: 400px;
overflow:auto;
border: 1px solid #b3c7e1;
padding: 10px;
margin: 10px 0;
}
#ul1 li{
float:left;
width:350px;
margin: 15px 0;
padding: 10px;
background-color: #EEEEEE;
}
#ul1 li.self{
float: right;
background-color: #0b97c4
}
#ul1 li.who,#ul1 li.typing{
width: 95%;
text-align: center;
font-size: 14px;
font-weight: bold;
color: #19469D;
background: none;
margin: 0;
}
#ul1 li.typing{
color:blue;
}
#ul1 li.who_online {
position: absolute;
bottom: 0;
}
#ul1 li span{
float: right;
font-size: 14px;
}
#ul1 li p{
padding: 10px 5px;
}
textarea{
width: 80%;
float: left;
}
#btn1{
width: 15%;
margin-top: 10px;
height: 60px;
float: right;
}