blob: 0bf4f3376e0456a224acda2e7bad709c5c4f8bc5 (
plain) (
blame)
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
|
/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */
/* nwg-dock-hyprland style - themed with system / wallust */
@import 'wallust/colors-wallust.css';
window {
background: @background;
border-radius: 10px;
border: 1px solid @border;
}
#box {
padding: 6px 10px;
}
#active {
border-bottom: 2px solid @button-active;
}
button, image {
background: none;
border-style: none;
box-shadow: none;
color: @foreground;
}
button {
padding: 4px;
margin-left: 4px;
margin-right: 4px;
color: @foreground;
border-radius: 10px;
transition: all 0.2s ease-in-out;
}
button:hover {
background-color: @hovered;
border-radius: 10px;
}
button:focus {
box-shadow: none;
}
|