reconfigure HUD positioning and add a test element to the HUD

This commit is contained in:
2023-03-15 12:39:57 -07:00
parent da67f0dc54
commit 8136b7625c
2 changed files with 22 additions and 19 deletions

View File

@ -1,8 +1,8 @@
body {
margin: 0;
height: 100%;
height: 100vh;
overflow: hidden;
position: relative;
position: relative;
}
body:hover {
cursor: default;
@ -10,13 +10,6 @@ body:hover {
canvas.main_canvas {
position: absolute;
}
.hud {
position: absolute;
width: 100%;
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.hud_item {
background-color: #555555aa;
margin: 8px;
@ -24,6 +17,15 @@ canvas.main_canvas {
border-radius: 4px;
color: white;
font-family: roboto, sans-serif;
width: fit-content;
position: absolute;
display: inline-block;
}
.hud_item.bottom {
bottom: 0px;
}
.hud_item.right {
right: 0px;
}
div.bar {
width: 400px;