nixos-configs/modules/ags/config/scss/wim-widgets/powermenu.scss

53 lines
874 B
SCSS
Raw Normal View History

2023-08-27 10:31:41 -04:00
.powermenu {
2024-07-24 11:45:28 -04:00
background-color: $bg;
color: $fg;
padding: 10px;
font-family: "MesloLGS NF";
/* font-family: Iosevka Nerd Font; */
font-size: 70px;
border-radius: 30px;
border: 2px solid $contrast-bg;
label {
min-width: 140px;
min-height: 130px;
}
.button {
margin: 5px 10px;
border-radius: 12px;
min-width: 80px;
transition: all ease .2s;
&:hover {
background-color: $bg-secondary;
}
&:active {
background-color: $bg-secondary;
}
.content {
border-radius: 4px;
padding: 0 15px;
}
}
.shutdown {
color: $red;
}
.reboot {
color: $magenta;
}
.logout {
color: $yellow;
2023-08-27 10:31:41 -04:00
}
}
.powermenu-clickhandler {
2024-07-24 11:45:28 -04:00
background-color: black;
2023-08-27 10:31:41 -04:00
}