-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (62 loc) · 840 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
59
60
61
62
63
64
65
66
67
68
69
70
* {margin: 0; padding: 0;}
body,html {
height: 100%;
}
.hidden {
display: none;
}
.menu {
padding: 0;
margin: 0;
width: 0;
}
.menu li {
list-style-type: none;
display: block;
width: 9em;
border: 1px solid #fff;
font-size: 0.8em;
text-align: center;
text-decoration: bold;
background: #808;
color: #eee;
padding: 0.1em;
}
.menu li:hover {
background: #ddd;
color: #808;
cursor: pointer;
}
section {
width: 30em;
display: inline-block;
}
#chatArea {
border: 1px solid black;
min-width: 200px;
height: 300px;
overflow-y: auto;
}
#eventLog {
border: 1px solid black;
min-width: 200px;
height: 300px;
overflow-y: auto;
}
#chatMessage {
min-width: 50%;
}
.notice {
font-weight: bolder;
}
.join {
color: #1EEB2C;
font-weight: bold;
}
.leave {
color: #7A8C7B;
font-weight: bold;
}
.error {
color: red;
}