dotfiles/.config/wlogout/style.css
2024-10-29 22:08:15 +01:00

42 lines
693 B
CSS

* {
background-image: none;
box-shadow: none;
}
window {
background-color: rgba(12, 12, 12, 0.9);
}
button {
border-radius: 34;
border-color: black;
text-decoration-color: blue;
color: #FFFFFF;
background-color: #32312e;
border: none;
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
margin: 15px;
}
button:focus, button:active, button:hover {
background-color: #E6C873;
outline-style: none;
}
#lock {
background-image: url("./assets/lock.svg");
}
#logout {
background-image: url("./assets/logout.svg");
}
#shutdown {
background-image: url("./assets/shutdown.svg");
}
#reboot {
background-image: url("./assets/reboot.svg");
}