This repository has been archived on 2021-02-20. You can view files and clone it, but cannot push or open issues or pull requests.
shapez.io/src/css/ingame_hud/debug_info.scss

35 lines
725 B
SCSS
Raw Normal View History

2020-05-18 12:53:01 +02:00
#ingame_HUD_DebugInfo {
position: absolute;
@include S(bottom, 5px);
@include S(right, 5px);
2020-05-18 12:53:01 +02:00
text-align: right;
2020-05-18 12:53:01 +02:00
font-size: 15px;
2020-07-06 14:40:31 +02:00
display: grid;
2020-05-18 12:53:01 +02:00
line-height: 15px;
2020-05-18 17:40:20 +02:00
color: #fff;
2020-07-06 14:40:31 +02:00
grid-gap: 2px;
text-shadow: 1px 1px 3px rgba(#000, 0.4);
font-weight: bold;
2020-06-30 03:53:06 +02:00
&:not([data-mode="detailed"]) {
2020-06-30 03:53:06 +02:00
.mousePosition,
.cameraPosition {
display: none;
}
}
2020-07-06 14:40:31 +02:00
code {
background: #333;
min-width: 30px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 14px;
line-height: 15px;
padding: 1px;
font-family: "GameFont";
border-radius: 3px;
}
2020-05-18 12:53:01 +02:00
}