48 lines
947 B
CSS
48 lines
947 B
CSS
* {
|
|
background-image: none;
|
|
}
|
|
|
|
window {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
button {
|
|
/* color: #ffffff; */
|
|
/* background-color: rgba(255, 255, 255, 0.5); */
|
|
border-width: 2px;
|
|
border-style: solid;
|
|
border-color: rgba(255, 255, 255, 0.5);
|
|
/* border-radius: 50%; */
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 25%;
|
|
margin: 25px;
|
|
}
|
|
|
|
button:focus, button:active, button:hover {
|
|
background-color: rgba(0, 0, 0, 0.75);
|
|
outline-style: none;
|
|
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")
|
|
);
|
|
}
|