Files
dots/wlogout/style.css
2026-02-05 22:14:56 +03:00

67 lines
1.3 KiB
CSS

* {
background-image: none;
font-size: 20px;
font-family: "JetBrains Mono NFM";
}
@import '../../.config/waybar/style.css';
window {
background-color: rgba(17, 17, 17, 0.45)
}
button {
border-radius: 20px;
margin: 10px;
color: @inverse_surface;
border-color: @inverse_surface;
background-color: rgba(0, 0, 0, 0.5);
outline-style: none;
border-style: solid;
border-width: 0px;
background-repeat: no-repeat;
background-position: center;
background-size: 20%;
box-shadow: none;
text-shadow: none;
animation: gradient_f 20s ease-in infinite;
}
button:hover,button:focus {
background-color: @on_secondary_fixed_variant;
background-size: 30%;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
/* Adjust the size of the icon or content inside the button */
button span {
font-size: 1.2em; /* Increase the font size */
}
#lock {
background-image: image(url("./icons/lock.png"));
}
#logout {
background-image: image(url("./icons/logout.png"));
}
#suspend {
background-image: image(url("./icons/sleep.png"));
}
#shutdown {
background-image: image(url("./icons/power.png"));
}
#reboot {
background-image: image(url("./icons/restart.png"));
}
#hibernate {
background-image: image(url("./icons/hibernate.png"));
}