blob: ed56fcac47cdad87c78081717bdea28522a6b8fe (
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
86
87
88
89
90
91
92
93
94
95
96
97
|
* {
font-family: sans-serif;
}
#chatlog {
display: table;
list-style: none;
margin: 0;
padding: 0
}
#chatlog li {
display: table-row;
margin: 0;
padding: 0;
}
#chatlog li .nick {
display: table-cell;
padding-right: 1ex;
font-weight: bold;
text-align: right;
}
#chatlog li .msg {
display: table-cell;
}
#chatlog li.leave, #chatlog li.join, #chatlog li.leave .nick, #chatlog li.join .nick {
color: gray !important;
font-style: italic !important;
}
h1 {
text-align: center;
font-weight: bold;
font-size: 18pt;
margin: 0;
position: fixed;
top: 0;
left: 0;
right: 0;
border-bottom: 1px solid #28f;
height: 8mm;
background: white;
}
#buddiescontainer {
position: fixed;
top: 0;
right: 0;
width: 35mm;
margin: 10mm 0 12mm 0;
}
#buddiescontainer h2 {
font-weight: bold;
font-size: 12pt;
}
#buddies {
margin: 0;
padding: 0;
}
#buddies li {
margin: 0;
padding: 0;
}
#chatlog {
margin: 10mm 40mm 12mm 0;
}
#chatinput {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 10mm;
border-top: 1px solid #28f;
}
#chatinput input {
position: absolute;
top: 0px;
left: 0px;
height: 8mm;
width: calc(100% - 25mm);
}
#chatinput button {
position: absolute;
top: 0;
right: 0;
width: 20mm;
bottom: 0;
}
|