-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscreen.css
92 lines (78 loc) · 1.41 KB
/
screen.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
92
body {
background-color: #CCCCCC;
color: #666666;
font-family: Verdana;
font-size: 12px;
}
h1 { font-size: 16px; margin:0 0 5px 3px; padding:0; }
h2 { font-size: 14px; margin:0 0 5px 3px; padding:0; }
#wrapper {
width: 850px;
}
/**********************************************************************
* Window Listing
**********************************************************************/
#windows {
/*
position:absolute;
top: 10px;
right: 10px;
*/
max-width:250px;
float:right;
font-size: 12px;
color: #666666;
}
#windows > ul {
margin: 0;
padding: 0;
list-style-type: none;
}
#windows > ul > li {
margin: 2px;
padding: 4px;
border: 1px solid #999999;
background-color: #DFDFDF;
list-style-type: none;
cursor:pointer;
}
/**********************************************************************
* Window Listing
**********************************************************************/
#messages {
max-width:620px;
max-height:300px;
overflow:auto;
font-family: Verdana;
font-size: 12px;
color: #666666;
}
#messages > ul {
margin: 0;
padding: 0;
list-style-type: none;
}
#messages > ul > li {
margin: 2px;
padding: 4px;
border: 1px solid #999999;
background-color: #FFFFFF;
list-style-type: none;
}
.ident {
width: 180px;
display: inline-block;
font-style:italic;
}
.message {
}
.self {
color: #333399;
background-color: #CCCCFF;
}
.info {
font-style: italic;
}
.clear {
clear:both;
}