45 lines
874 B
CSS
Raw Normal View History

2024-03-02 17:06:30 +01:00
* {
background-image: none;
2025-01-20 13:47:32 +01:00
font-family: "Ubuntu Nerd Font";
font-size: 20px;
2024-03-02 17:06:30 +01:00
}
window {
2025-01-20 13:47:32 +01:00
background-color: rgba(0, 0, 0, 0.9);
2024-03-02 17:06:30 +01:00
}
button {
2025-01-20 13:47:32 +01:00
background-color: rgba(0, 0, 0, 0.5);
2024-03-02 17:06:30 +01:00
border-width: 2px;
2024-06-02 13:08:11 +02:00
border-style: solid;
border-color: rgba(255, 255, 255, 0.5);
2024-03-02 17:06:30 +01:00
background-repeat: no-repeat;
background-position: center;
2025-01-20 13:47:32 +01:00
background-size: 10%;
2024-06-02 13:08:11 +02:00
margin: 25px;
2024-03-02 17:06:30 +01:00
}
button:focus, button:active, button:hover {
2024-06-02 13:08:11 +02:00
border-color: rgb(255, 255, 255);
2024-03-02 17:06:30 +01: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")
);
2025-01-20 13:47:32 +01:00
}