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
|
@import url("/home/user/.cache/wal/colors-css");
* {
color: @foreground;
}
.blank-window {
background: transparent;
}
.notification-action,
.notification-default-action,
.control-center {
border-radius: 0.75em;
border: 2px solid alpha(@color11, 0.3);
background: alpha(black, 0.5);
}
.notification {
box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.5);
}
.notification-content {
margin: 5px;
}
.control-center .notification-row {
background: alpha(black, 0.2);
}
.widget-dnd {
font-weight: bold;
margin: 1em;
}
.widget-dnd>switch {
border: 1px solid alpha(@color11, 0.3);
border-radius: 0.75em;
background: alpha(black, 0.5);
padding: 1px;
}
.widget-dnd> switch slider {
border: 1px solid alpha(@color11, 0.3);
border-radius: 0.75em;
background: rgb(15, 15, 15);
box-shadow: none;
}
.widget-mpris {
border-radius: 0.75em;
background: alpha(black, 0.5);
margin: 1em;
}
.widget-buttons-grid {
margin: 1em;
background: alpha(black, 0.5);
}
.widget-buttons-grid>flowbox>flowboxchild>button {
box-shadow: none;
color: @foreground;
font-style: normal;
border: 1px solid alpha(@color11, 0.3);
background: @background;
}
.widget-buttons-grid>flowbox>flowboxchild>button:hover {
background: black;
}
|