blob: e56858402c65b7db97d5bf4c00f8b2f0baac7b8f (
plain)
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
|
body
{
padding: 0px;
margin: 0px;
font-family: sans-serif;
}
div
{
margin:0px;
padding:0px;
}
#roster
{
float:left;
width:250px;
height:100%;
font-size:0.8em;
}
#bottom
{
position:fixed;
bottom:0px;
width:100%;
}
#bottomup
{
text-align: right;
}
#consolea
{
text-decoration: none;
color : black;
background-color : gray;
margin:0px;
padding-left:5px;
padding-right:5px;
padding-top:5px;
}
#log
{
height:400px;
width:100%;
overflow:auto;
display:none;
border-top:1px solid black;
}
.roster-contact
{
border-bottom : 1px dotted black;
padding: 5px;
}
.roster-contact:hover
{
background-color: #E5E9EE;
}
.roster-name
{
font-weight:bold;
}
#roster > ul
{
list-style-type: none;
padding: 0px;
}
.online
{
background-color: #DBFFDC;
}
.away
{
background-color: #E3E3E3;
}
|