shapez/src/css/ingame_hud/building_placer.scss

34 lines
697 B
SCSS
Raw Normal View History

2020-05-09 16:45:23 +02:00
#ingame_HUD_building_placer {
position: fixed;
@include S(top, 50px);
@include S(right, 10px);
2020-05-09 16:45:23 +02:00
display: flex;
flex-direction: column;
@include S(padding, 6px);
justify-content: center;
align-items: flex-start;
2020-05-09 16:45:23 +02:00
@include S(border-radius, 4px);
2020-05-11 14:21:59 +02:00
background: rgba(#333, 0.9);
@include S(width, 200px);
2020-05-09 16:45:23 +02:00
.buildingLabel {
@include PlainText;
color: #fff;
text-transform: uppercase;
@include S(margin-bottom, 2px);
}
.instructions,
.description {
color: #fff;
opacity: 0.8;
2020-05-09 16:45:23 +02:00
@include SuperSmallText;
}
@include StyleBelowWidth(700px) {
display: none !important;
}
}