-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui.tcss
89 lines (79 loc) · 1.22 KB
/
gui.tcss
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
Screen {
align: center middle;
layout: vertical;
background: #212529;
}
Header {
dock: top;
height: 1;
content-align: center middle;
background: blanchedalmond;
}
MessageBox {
layout: horizontal;
height: auto;
align-horizontal: center;
}
.message {
width: auto;
min-width: 25%;
border: tall black;
padding: 1 1;
margin: 1 0;
background: #343a40;
}
#chatscreen {
border: tall black;
margin: 1 1 1 1;
}
#infoscreen {
border: tall black;
margin: 1 1 1 1;
}
.info {
width: auto;
text-align: center;
}
.question {
margin: 1 0 1 80;
}
.answer {
margin: 1 80 1 0;
}
#input_box {
dock: bottom;
height: auto;
width: 95%;
margin: 0 0 1 0;
align_horizontal: center;
}
#message_input {
width: 90%;
background: #343a40;
}
#send_button {
width: auto;
content-align: center middle;
}
#profile_info {
border: tall black;
margin: 1 1 1 1;
}
#edit_box {
dock: bottom;
height: auto;
width: 95%;
margin: 0 0 1 0;
align_horizontal: center;
}
#edit_input {
width: 90%;
background: #343a40;
}
#send_edit {
width: auto;
content-align: center middle;
}
Pretty {
align_horizontal: center;
}