mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
43 lines
922 B
SCSS
43 lines
922 B
SCSS
|
#ingame_HUD_ModeMenuNext {
|
||
|
position: absolute;
|
||
|
@include S(top, 10px);
|
||
|
@include S(right, 10px);
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: flex-end;
|
||
|
backdrop-filter: blur(D(1px));
|
||
|
padding: D(3px);
|
||
|
|
||
|
> .button {
|
||
|
@include ButtonText;
|
||
|
@include IncreasedClickArea(0px);
|
||
|
pointer-events: all;
|
||
|
cursor: pointer;
|
||
|
position: relative;
|
||
|
color: #333438;
|
||
|
transition: all 0.12s ease-in-out;
|
||
|
transition-property: opacity, transform;
|
||
|
|
||
|
opacity: 0.8;
|
||
|
&:hover {
|
||
|
opacity: 1 !important;
|
||
|
}
|
||
|
|
||
|
&.pressed {
|
||
|
transform: scale(0.9) !important;
|
||
|
}
|
||
|
|
||
|
@include DarkThemeOverride {
|
||
|
color: #fff;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
> .content {
|
||
|
@include SuperSmallText;
|
||
|
@include S(font-size, 7px);
|
||
|
@include S(width, 150px);
|
||
|
text-align: right;
|
||
|
}
|
||
|
}
|