This repository was archived by the owner on Apr 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
157 lines (135 loc) · 2.52 KB
/
App.css
File metadata and controls
157 lines (135 loc) · 2.52 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* --- THEME VARIABLES --- */
$neon-blue: #00e5ff;
$dark-blue: #003344;
$bg-color: #111;
Screen {
background: $bg-color;
align: center middle;
}
#main_container {
width: 84;
height: auto;
align: center middle;
}
/* --- TITLE --- */
#Title {
width: 100%;
content-align: center middle;
color: $neon-blue;
text-style: bold;
margin-bottom: 1;
}
/* --- ROWS --- */
Horizontal.row {
width: 100%;
height: auto;
align: center top;
margin-bottom: 0;
}
/* --- BOX STYLES --- */
.box {
width: 1fr;
height: 13; /* Increased height to prevent scrollbar */
border: round $neon-blue;
background: $bg-color;
padding: 1 2;
margin: 0 1 1 1;
}
.box-label {
width: 100%;
text-align: center;
color: $neon-blue 60%;
text-style: bold;
margin-bottom: 1;
}
/* --- WIDGET SPECIFICS --- */
Center {
width: 100%;
align: center middle;
}
/* Radio Set */
RadioSet {
width: 100%;
height: 80%;
border: none;
background: $bg-color;
overflow: auto;
}
RadioButton {
width: 100%;
/*
Aligning LEFT keeps the buttons in a perfect vertical line.
Padding-left pushes them to the visual center of the box.
This looks cleaner than 'center middle' for lists.
*/
content-align: left middle;
padding-left: 10;
color: white;
background: $bg-color;
height: auto;
margin-bottom: 1; /* Slight spacing between options */
}
RadioButton.-on {
color: $bg-color;
background: $neon-blue;
text-style: bold;
}
/* Sparkline */
#spark {
width: 100%;
height: 5;
color: $neon-blue;
margin-top: 1;
}
/* Slider */
#volume_slider {
width: 100%;
color: $neon-blue;
background: $bg-color;
margin-top: 1;
}
/* Button */
Button {
min-width: 16;
border: none;
background: $dark-blue;
color: $neon-blue;
text-style: bold;
margin-top: 1;
height: 1;
}
Button:hover {
background: $neon-blue;
color: $bg-color;
}
/* Footer */
Footer {
background: $dark-blue;
color: $neon-blue;
}
#add_station_box {
height: 15;
align: center middle;
}
#add_button {
width: auto;
align: center middle;
margin-top: 1;
}
/* --- MANAGE STATIONS BOX --- */
#manage_stations_box {
height: auto;
padding: 1;
}
Collapsible {
width: 100%;
height: auto;
}
Collapsible > .collapsible--title {
background: $bg-color;
color: $neon-blue;
border: none;
width: 100%;
text-style: bold;
content-align: center middle;
}