blob: 902f60b8a5bce15126039383b924b224dc2f9e06 (
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
|
#rag {
background: #151515;
color: #E1E1E1;
height: auto;
width: 100%;
margin: 0 0 2 0;
grid-size: 2 2;
}
#history {
scrollbar-size: 1 1;
height: 80%;
}
#output {
height: 100%;
}
#chat {
border: round #373737;
padding: 1;
margin-top: 2;
margin-right: 2;
}
#input {
height: 20%;
dock: bottom;
}
#references {
scrollbar-size: 1 1;
dock: right;
border-left: solid #373737;
height: 100%;
width: 20%;
}
Input {
dock: bottom;
align_horizontal: center;
width: 90%;
height: 10%;
background: #202020;
color: #E1E1E1;
border: round #373737;
}
|