blob: df47f8eed9d1959985946228de081417d4b40297 (
plain)
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
|
@import url("/home/user/.cache/wal/colors-css");
* {
color: @foreground;
background: transparent;
}
#input {
border-radius: 0.75em;
border: 2px solid alpha(@color3, 0.3);
box-shadow: none;
background: alpha(@background, 0.8);
}
#outer-box {
padding: 10px;
border-radius: 0.75em;
border: 2px solid alpha(@color3, 0.3);
background: alpha(@background, 0.5);
}
#scroll {
margin-top: 10px;
}
#img {
margin-right: 2px;
-gtk-icon-transform:scale(0.6);
}
#entry:selected {
border-radius: 0.25em;
background-color: alpha(@background, 0.3);
}
|