48 lines
947 B
CSS
Raw Normal View History

2024-03-02 16:06:30 +00:00
* {
background-image: none;
}
window {
background-color: rgba(0, 0, 0, 0.5);
}
button {
2024-06-02 11:08:11 +00:00
/* color: #ffffff; */
/* background-color: rgba(255, 255, 255, 0.5); */
2024-03-02 16:06:30 +00:00
border-width: 2px;
2024-06-02 11:08:11 +00:00
border-style: solid;
border-color: rgba(255, 255, 255, 0.5);
/* border-radius: 50%; */
2024-03-02 16:06:30 +00:00
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
2024-06-02 11:08:11 +00:00
margin: 25px;
2024-03-02 16:06:30 +00:00
}
button:focus, button:active, button:hover {
2024-06-02 11:08:11 +00:00
background-color: rgba(0, 0, 0, 0.75);
2024-03-02 16:06:30 +00:00
outline-style: none;
2024-06-02 11:08:11 +00:00
border-color: rgb(255, 255, 255);
2024-03-02 16:06:30 +00:00
}
#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")
);
}