45 lines
874 B
CSS
45 lines
874 B
CSS
* {
|
|
background-image: none;
|
|
font-family: "Ubuntu Nerd Font";
|
|
font-size: 20px;
|
|
}
|
|
|
|
window {
|
|
background-color: rgba(0, 0, 0, 0.9);
|
|
}
|
|
|
|
button {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
border-width: 2px;
|
|
border-style: solid;
|
|
border-color: rgba(255, 255, 255, 0.5);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 10%;
|
|
margin: 25px;
|
|
}
|
|
|
|
button:focus, button:active, button:hover {
|
|
border-color: rgb(255, 255, 255);
|
|
}
|
|
|
|
#logout {
|
|
background-image: image(
|
|
url("/usr/share/wlogout/icons/logout.png"),
|
|
url("/usr/local/share/wlogout/icons/logout.png")
|
|
);
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: image(
|
|
url("/usr/share/wlogout/icons/shutdown.png"),
|
|
url("/usr/local/share/wlogout/icons/shutdown.png")
|
|
);
|
|
}
|
|
|
|
#reboot {
|
|
background-image: image(
|
|
url("/usr/share/wlogout/icons/reboot.png"),
|
|
url("/usr/local/share/wlogout/icons/reboot.png")
|
|
);
|
|
} |