mirror of
https://github.com/xsghetti/HyprCrux.git
synced 2025-07-03 05:40:38 -04:00
63 lines
No EOL
1.3 KiB
SCSS
63 lines
No EOL
1.3 KiB
SCSS
.cheatsheet-bg {
|
|
@include large-rounding;
|
|
@include elevation-border;
|
|
@include elevation2;
|
|
margin-bottom: 0.682rem;
|
|
background-color: $layer0;
|
|
padding: 1.364rem;
|
|
}
|
|
|
|
.cheatsheet-title {
|
|
color: $cheatsheetTitle;
|
|
}
|
|
|
|
.cheatsheet-key {
|
|
@include techfont;
|
|
min-height: 1.364rem;
|
|
min-width: 1.364rem;
|
|
margin: 0.17rem;
|
|
padding: 0.136rem 0.205rem;
|
|
-gtk-outline-radius: 0.409rem;
|
|
color: $cheatsheetTitle;
|
|
border-radius: 0.409rem;
|
|
border: 0.068rem solid $cheatsheetTitle;
|
|
box-shadow: 0rem 0.136rem 0rem $cheatsheetTitle;
|
|
}
|
|
|
|
.cheatsheet-key-notkey {
|
|
min-height: 1.364rem;
|
|
padding: 0.136rem 0.205rem;
|
|
margin: 0.17rem;
|
|
color: $onLayer0;
|
|
}
|
|
|
|
@for $i from 1 through 8 {
|
|
.cheatsheet-color-#{$i} {
|
|
color: nth($cheatsheetColors, $i);
|
|
border-color: nth($cheatsheetColors, $i);
|
|
box-shadow: 0rem 0.136rem 0rem nth($cheatsheetColors, $i);
|
|
}
|
|
}
|
|
|
|
// .cheatsheet-action {}
|
|
|
|
.cheatsheet-closebtn {
|
|
@include element_decel;
|
|
@include full-rounding;
|
|
min-width: 2.386rem;
|
|
min-height: 2.386rem;
|
|
}
|
|
|
|
.cheatsheet-closebtn:hover,
|
|
.cheatsheet-closebtn:focus {
|
|
background-color: $layer0Hover;
|
|
}
|
|
|
|
.cheatsheet-closebtn:active {
|
|
background-color: $layer0Active;
|
|
}
|
|
|
|
.cheatsheet-category-title {
|
|
@include titlefont;
|
|
font-size: 1.705rem;
|
|
} |