2024-11-25 12:09:03 -05:00
|
|
|
@use 'sass:color';
|
|
|
|
@use '../../style/colors';
|
2023-11-28 16:29:17 -05:00
|
|
|
|
2024-11-25 13:15:13 -05:00
|
|
|
.settings {
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
|
|
|
.button {
|
|
|
|
background-color: colors.$window_bg_color;
|
|
|
|
border: 0.1rem solid color.adjust(colors.$window_bg_color, $lightness: -3%);
|
|
|
|
border-radius: 0.7rem;
|
|
|
|
padding: 0.3rem;
|
|
|
|
|
|
|
|
&.toggled {
|
|
|
|
background-color: colors.$accent-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-28 16:29:17 -05:00
|
|
|
.osk {
|
2024-07-24 11:45:28 -04:00
|
|
|
padding-top: 4px;
|
|
|
|
border-radius: 10px 10px 0;
|
|
|
|
|
|
|
|
.side {
|
|
|
|
.key {
|
|
|
|
&:active label {
|
2024-11-25 12:09:03 -05:00
|
|
|
background-color: colors.$accent-color;
|
2024-07-24 11:45:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
2024-11-25 12:09:03 -05:00
|
|
|
background-color: colors.$window_bg_color;
|
|
|
|
border: 0.08rem solid color.adjust(colors.$window_bg_color, $lightness: -3%);
|
2024-07-24 11:45:28 -04:00
|
|
|
border-radius: 0.7rem;
|
|
|
|
min-height: 3rem;
|
|
|
|
|
2024-11-25 17:25:27 -05:00
|
|
|
transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
2023-11-19 15:00:29 -05:00
|
|
|
|
2024-07-24 11:45:28 -04:00
|
|
|
&.normal,
|
|
|
|
&.Super {
|
|
|
|
min-width: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.Tab,
|
|
|
|
&.Backspace {
|
|
|
|
min-width: 7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.Enter,
|
|
|
|
&.Caps {
|
|
|
|
min-width: 8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.Shift {
|
|
|
|
min-width: 9rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.Space {
|
|
|
|
min-width: 20rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.PrtSc,
|
|
|
|
&.AltGr {
|
|
|
|
min-width: 3.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2024-11-25 12:09:03 -05:00
|
|
|
background-color: color.adjust(colors.$window_bg_color, $lightness: -3%);
|
2024-07-24 11:45:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.altgr {
|
|
|
|
border: 0.08rem solid blue;
|
|
|
|
}
|
|
|
|
}
|
2023-11-19 15:00:29 -05:00
|
|
|
}
|
|
|
|
|
2024-07-24 11:45:28 -04:00
|
|
|
&.right-side {
|
|
|
|
.key .mod {
|
|
|
|
&.Ctrl {
|
|
|
|
min-width: 2.4rem;
|
|
|
|
}
|
|
|
|
}
|
2023-11-19 15:00:29 -05:00
|
|
|
}
|
|
|
|
|
2024-07-24 11:45:28 -04:00
|
|
|
&.left-side {
|
|
|
|
.key .mod {
|
|
|
|
&.Alt {
|
|
|
|
min-width: 3rem;
|
|
|
|
}
|
2023-11-19 15:00:29 -05:00
|
|
|
|
2024-07-24 11:45:28 -04:00
|
|
|
&.Ctrl {
|
|
|
|
min-width: 4rem;
|
|
|
|
}
|
|
|
|
}
|
2023-11-19 15:00:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|