mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
24 lines
531 B
SCSS
24 lines
531 B
SCSS
#ingame_HUD_CatMemes {
|
|
position: absolute;
|
|
@include S(width, 150px);
|
|
@include S(height, 150px);
|
|
background: transparent center center / contain no-repeat;
|
|
|
|
right: 0;
|
|
@include S(bottom, 150px);
|
|
|
|
& {
|
|
/* @load-async */
|
|
background-image: uiResource("res/ui/memes/cat1.png") !important;
|
|
}
|
|
|
|
@include InlineAnimation(0.5s ease-in-out) {
|
|
0% {
|
|
transform: translateX(100%);
|
|
}
|
|
100% {
|
|
transform: none;
|
|
}
|
|
}
|
|
}
|