blob: 933b93a9b03c1b442e670626885301b7eac5826b (
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
|
body {
color: white;
background-color: #222;
font-family: Arial, sans-serif;
overflow: hidden;
}
.header {
height: 10%;
}
.main {
height: 85%;
}
.footer {
float: bottom;
height:5%
}
#messages {
height: 100%;
overflow-y: scroll;
overflow-x: auto;
position: relative;
bottom: 0;
}
#msgbox {
width: 100%;
height: 100%;
}
input {
border: 1px solid #45d;
background-color: #45b;
color: white;
}
input:focus {
border: 1px solid #000;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
|