-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.tcss
More file actions
99 lines (82 loc) · 1.5 KB
/
app.tcss
File metadata and controls
99 lines (82 loc) · 1.5 KB
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
Screen {
overflow: auto;
}
#main-menu-container {
padding: 0;
height: 100%;
width: 100%;
align-horizontal: center;
align-vertical: middle;
}
#main-menu-title-container{
border-top: dashed rgb(40, 108, 134);
border-bottom: dashed rgb(40, 108, 134);
height: 30%;
width: 100%;
align-horizontal: center;
align-vertical: middle;
}
.title {
text-style: bold underline;
content-align: center middle;
width: 20%;
grid-size: 50;
color:rgb(195, 255, 204);
padding-bottom: 1;
}
#settings-list {
column-span: 2;
align-horizontal: center;
align-vertical: middle;
}
Button {
margin: 1 0;
width: 40%;
}
#option-container {
height: auto;
width: 100%;
align-horizontal: left;
align-vertical: bottom;
}
#run_compose {
width: 50%;
}
#stop_compose {
width: 50%;
}
/* -------------------setting page------------------------*/
#setting-container {
padding: 0;
height: 100%;
width: 100%;
}
#setting-title-container {
height: 15%;
width: 100%;
align-horizontal: center;
align-vertical: middle;
}
.setting-title {
text-style: bold underline;
content-align: center middle;
width: 20%;
grid-size: 50;
color:rgb(101, 155, 15);
padding-bottom: 1;
}
#setting-items-container {
height: auto;
width: 100%;
}
#save-cancel-container {
width: 100%;
align-horizontal: right;
align-vertical: bottom;
}
#save_and_back {
width: 50%;
}
#cancel {
width: 50%;
}