2024-10-31 15:35:03 -04:00
|
|
|
@use '../../style/colors' as colors;
|
|
|
|
|
2024-10-21 15:16:27 -04:00
|
|
|
.powermenu {
|
|
|
|
font-size: 70px;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
icon {
|
|
|
|
min-width: 130px;
|
|
|
|
min-height: 130px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin: 5px 10px;
|
|
|
|
transition: all ease .2s;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
2024-10-31 15:35:03 -04:00
|
|
|
background-color: lighten(colors.$window_bg_color, 3%);
|
2024-10-21 15:16:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.shutdown {
|
2024-10-31 15:35:03 -04:00
|
|
|
color: colors.$red_1;
|
2024-10-21 15:16:27 -04:00
|
|
|
}
|
|
|
|
.reboot {
|
2024-10-31 15:35:03 -04:00
|
|
|
color: colors.$purple_1;
|
2024-10-21 15:16:27 -04:00
|
|
|
}
|
|
|
|
.logout {
|
2024-10-31 15:35:03 -04:00
|
|
|
color: colors.$yellow_1;
|
2024-10-21 15:16:27 -04:00
|
|
|
}
|
|
|
|
}
|