nixos-configs/nixosModules/ags/config/scss/wim-widgets/osk.scss

100 lines
2 KiB
SCSS
Raw Normal View History

.thingy {
2024-07-24 11:45:28 -04:00
border-radius: 2rem 2rem 0 0;
min-height: 2.7rem;
min-width: 20rem;
.settings {
padding: 0.5rem;
.button {
background-color: $bgfull;
border: 0.1rem solid $darkbg;
border-radius: 0.7rem;
padding: 0.3rem;
&.toggled {
background-color: $contrast-bg;
}
}
2023-11-19 16:25:01 -05:00
}
}
.osk {
2024-07-24 11:45:28 -04:00
padding-top: 4px;
border-radius: 10px 10px 0;
.side {
.key {
&:active label {
background-color: $contrast-bg;
}
label {
background-color: $bg;
border: 0.08rem solid $darkbg;
border-radius: 0.7rem;
min-height: 3rem;
transition: background-color 0.2s ease-in-out,
border-color 0.2s ease-in-out;
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 {
background-color: $darkbg;
}
&.altgr {
border: 0.08rem solid blue;
}
}
}
2024-07-24 11:45:28 -04:00
&.right-side {
.key .mod {
&.Ctrl {
min-width: 2.4rem;
}
}
}
2024-07-24 11:45:28 -04:00
&.left-side {
.key .mod {
&.Alt {
min-width: 3rem;
}
2024-07-24 11:45:28 -04:00
&.Ctrl {
min-width: 4rem;
}
}
}
}
}