blob: 91f5b81d63a14be3423c22a546d22c78a3a74740 (
plain) (
blame)
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
|
#body-chat {
}
p {
display: block;
}
scrollbarvertical {
background-color: #2c2c2c55;
width: 3vh;
left: 0;
}
scrollbarvertical sliderbar {
height: 10vh;
background-color: #9c9c9c55;
}
scrollbarvertical sliderbar:active {
background-color: #cfd69d;
}
scrollbarvertical sliderarrowdec {
display: none;
}
scrollbarvertical sliderarrowinc {
display: none;
}
#chat {
background-color: #00000055;
width: 80%;
height: 70%;
position: fixed;
bottom: 10%;
left: 0;
text-align: left;
overflow-y: auto;
}
.chat-msg {
font-size: 5vh;
bottom: 0%;
}
#chat-input {
width: 90%;
}
#chat-send {
margin: 0.25%;
}
#chat-footer {
position: fixed;
display: block;
bottom: 0;
width: 100%;
left: 0;
}
|