64 lines
1.2 KiB
CSS
64 lines
1.2 KiB
CSS
|
@import url("file:///home/viyurz/.config/gtk-3.0/colors-gtk.css");
|
||
|
|
||
|
* {
|
||
|
background-image: none;
|
||
|
}
|
||
|
|
||
|
window {
|
||
|
background-color: rgba(12, 12, 12, 0.5);
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
font-family: "Hack Nerd Font";
|
||
|
font-size: 13pt;
|
||
|
color: @foreground;
|
||
|
margin: 5px;
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center;
|
||
|
background-size: 25%;
|
||
|
background-color: transparent;
|
||
|
border: 2px solid transparent;
|
||
|
border-radius: 16px;
|
||
|
box-shadow: none
|
||
|
}
|
||
|
|
||
|
button:hover {
|
||
|
background-color: alpha(@foreground, 0.25);
|
||
|
}
|
||
|
|
||
|
button:focus, button:active {
|
||
|
background-color: alpha(@foreground, 0.5);
|
||
|
}
|
||
|
|
||
|
#lock {
|
||
|
background-image: image(url("./lock.png"));
|
||
|
}
|
||
|
|
||
|
#lock:focus, #lock:active {
|
||
|
background-image: image(url("./lock-focus.png"));
|
||
|
}
|
||
|
|
||
|
#logout {
|
||
|
background-image: image(url("./logout.png"));
|
||
|
}
|
||
|
|
||
|
#logout:focus, #logout:active {
|
||
|
background-image: image(url("./logout-focus.png"));
|
||
|
}
|
||
|
|
||
|
#shutdown {
|
||
|
background-image: image(url("./shutdown.png"));
|
||
|
}
|
||
|
|
||
|
#shutdown:focus, #shutdown:active {
|
||
|
background-image: image(url("./shutdown-focus.png"));
|
||
|
}
|
||
|
|
||
|
#reboot {
|
||
|
background-image: image(url("./reboot.png"));
|
||
|
}
|
||
|
|
||
|
#reboot:focus, #reboot:active {
|
||
|
background-image: image(url("./reboot-focus.png"));
|
||
|
}
|