Move home config into modules

This commit is contained in:
Paul-Henri Froidmont 2023-03-21 10:37:27 +01:00
parent b08fc5a41e
commit d5cbf61286
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
299 changed files with 850 additions and 698 deletions

View file

@ -1,46 +0,0 @@
// on screen keyboard
#keyboard {
background-color: $dark_bg_color_trans;
}
.keyboard-key {
@extend %shared-button;
&:grayed {
color: $selected_fg_color;
border-color: $selected_fg_color;
}
&:checked {
border-color: $selected_border;
}
&:hover {
@extend %shared-button-hover;
}
&:active {
@extend %shared-button-active;
}
}
.keyboard-layout {
spacing: 8px;
padding: 8px;
}
.keyboard-row {
spacing: 16px;
}
.keyboard-subkeys {
color: $dark_fg_color;
padding: 4px;
-arrow-border-radius: $roundness;
-arrow-background-color: $dark_bg_color;
-arrow-border-width: 1px;
-arrow-border-color: $dark_fg_color;
-arrow-base: 16px;
-arrow-rise: 8px;
-boxpointer-gap: 4px;
}
// desktop zoom feature
.magnifier-zoom-region {
border: 3px solid $exterior_border;
&.full-screen {
border-width: 0;
}
}