Personal dotfiles
1window {
2 background-color: transparent;
3 font-family: "JetBrainsMono Nerd Font Mono", "JetBrainsMono Nerd Font", "JetBrainsMono", monospace;
4}
5
6#outer-box {
7 background-color: #${theme_color_bgdefault};
8 color: #${theme_color_default};
9 font-size: 16pt;
10 border-radius: 16px;
11 border: 1px solid #${theme_color_divider};
12 padding: 32px;
13}
14
15#input {
16 background-color: #${theme_color_bgdefault};
17 color: #${theme_color_default};
18 border: 0;
19 border-bottom: 1px solid #${theme_color_divider};
20 margin-bottom: 16px;
21 outline: 0;
22}
23
24#scroll {
25 background-color: #${theme_color_bgdefault};
26 padding: 16px;
27 border-radius: 16px;
28 border: 1px solid #${theme_color_divider};
29}
30
31#entry {
32 padding: 8px;
33 border-radius: 8px;
34}
35
36#entry:selected {
37 background-color: #${theme_color_bghighlight};
38 color: #${theme_color_highlight};
39 border: 0;
40 outline: 0;
41}
42
43#entry:selected #text {
44 color: #${theme_color_highlight};
45}
46
47#expander-box {
48 background-color: #${theme_color_bgdefault};
49 color: #${theme_color_default};
50}
51
52#entry:selected #expander-box {
53 background-color: #${theme_color_bghighlight};
54 color: #${theme_color_default};
55}
56
57image {
58 margin-right: 16px;
59}