-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (84 loc) · 1.46 KB
/
style.css
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
98
99
100
101
102
103
/* for colors, see: https://textual.textualize.io/guide/design/#theme-reference */
TextualApp {
/* box-sizing: content-box;*/
background: $panel;
height: 100%;
width: 100%;
/* min-width: 50;*/
}
QuitScreen {
align: center middle;
}
.tabbed_container {
background: $panel;
}
.dialog {
grid-size: 2;
grid-gutter: 1 2;
grid-rows: 1fr 3;
padding: 0 1;
width: 60;
height: 11;
border: thick $background 80%;
background: $surface;
}
#question {
column-span: 2;
height: 1fr;
width: 1fr;
content-align: center middle;
}
Button {
width: 1fr;
}
.logs {
height: 1fr;
background: $background;
}
.stat_table {
width: 100%;
}
.tab_graphs {
layout: grid;
}
.graph_section {
box-sizing: content-box;
}
Container {
height: 1fr;
}
TabbedContent {
/* box-sizing: content-box;*/
height: 1fr;
}
TabPane {
padding: 0 1;
border-bottom: heavy $primary-background;
border-subtitle-color: $text-disabled;
height: 1fr;
}
Header {
dock: top;
content-align: center middle;
background: $panel;
}
Footer {
background: #073b61;
dock: bottom;
height: 1;
}
.footer--highlight {
background: #81a1c1;
color: #434c5e;
}
.footer--highlight-key {
background: #88c0d0;
color: #434c5e;
}
.footer--key {
background: #004578;
}
ScrollBar {
border-top: inner $panel-lighten-3;
border-bottom: inner $panel-lighten-3;
}