dotfiles/.config/wlogout/style.css

64 lines
1.2 KiB
CSS
Raw Normal View History

2024-03-06 16:00:50 +01:00
@import url("file:///home/viyurz/.config/gtk-3.0/colors.css");
2023-09-26 17:12:28 +02:00
* {
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"));
}