vitorpy's Dotfiles
1/* Zenburn theme for wofi */
2
3window {
4 margin: 0px;
5 border: 2px solid #8faf9f;
6 background-color: #3f3f3f;
7 border-radius: 10px;
8}
9
10#input {
11 margin: 5px;
12 padding: 8px;
13 border: none;
14 border-radius: 5px;
15 color: #dcdccc;
16 background-color: #2b2b2b;
17 font-size: 14px;
18}
19
20#inner-box {
21 margin: 5px;
22 border: none;
23 background-color: #3f3f3f;
24}
25
26#outer-box {
27 margin: 5px;
28 border: none;
29 background-color: #3f3f3f;
30}
31
32#scroll {
33 margin: 0px;
34 border: none;
35}
36
37#text {
38 margin: 5px;
39 border: none;
40 color: #dcdccc;
41}
42
43#entry:selected {
44 background-color: #5f7f5f;
45 border-radius: 5px;
46}
47
48#entry:selected #text {
49 color: #ffffff;
50 font-weight: bold;
51}
52
53#entry:hover {
54 background-color: #506070;
55 border-radius: 5px;
56}