-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (90 loc) · 1.35 KB
/
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
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
html,body,div,ul,form,dl,dt,dd {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
.container {
width: 800px;
margin: 0 auto;
margin-bottom: 10px;
overflow: hidden;
}
.hide {
display: none;
}
.box {
border: 1px solid #CCC;
height: 500px;
padding: 10px;
overflow-y: scroll;
}
.box h3 {
border-bottom: 1px solid #ccc;
padding-bottom: 5px;
}
.message-list {
width: 70%;
float: left;
}
.message-list dl {
margin-bottom: 20px;
}
.message-list dt {
padding: 5px;
background-color: #eee;
}
.message-list dd {
padding: 10px;
}
.message-list time {
color: #999;
}
.user-list {
width: 20%;
float: right;
}
.user-list li {
cursor: pointer;
padding: 5px;
}
.user-list li:hover {
background-color: #eee;
}
.send-box {
height: 80px;
}
.send-box textarea {
height: 92%;
width: 85%;
}
#btn-send {
height: 100%;
width: 13%;
border: 1px solid #ccc;
float: right;
cursor: pointer;
font-size: 20px;
}
.layer {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background-color: #000;
z-index: 8888;
opacity: .5;
}
.login {
position: absolute;
width: 200px;
height: 100px;
background-color: #fff;
padding: 20px;
border: 1px solid #999;
left: 150px;
top: 100px;
z-index: 9999;
}