This commit is contained in:
2026-01-17 14:26:04 +01:00
commit 1e90a052c1
370 changed files with 2230 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
@import "colors.css";
* {
box-shadow: none;
font-family: "JetBrainsMono Nerd Font";
}
window {
background-color: rgba(0, 0, 0, 0.4);
}
button {
border-radius: 0;
border-color: @surface;
color: @on_surface;
background-color: rgba(0, 0, 0, 0.4);
border-style: solid;
border-width: 1px;
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
margin: 5px;
}
button:focus, button:active, button:hover {
background-color: rgba(0, 0, 0, 0.4);
color: @on_surface;
outline-style: none;
border-color: @outline;
border-style: solid;
border-width: 1px;
}
#lock { background-image: url("icons/lock.png"); }
#logout { background-image: url("icons/logout.png"); }
#suspend { background-image: url("icons/suspend.png"); }
#hibernate { background-image: url("icons/hibernate.png"); }
#shutdown { background-image: url("icons/shutdown.png"); }
#reboot { background-image: url("icons/reboot.png"); }