startscreen.scss
GameHud
{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
background-color: transparent;
.hud
{
position: absolute;
top: 40px;
left: 40px;
display: flex;
flex-direction: column;
gap: 12px;
width: 320px;
background-color: transparent;
pointer-events: auto;
}
.bar-container
{
display: flex;
flex-direction: column;
gap: 4px;
background-color: transparent;
}
.bar-label
{
color: white;
font-size: 16px;
font-weight: bold;
text-shadow: 1px 1px 2px black;
background-color: transparent;
}
.bar-track
{
width: 100%;
height: 24px;
background-color: rgba(0, 0, 0, 0.5);
border: 2px solid rgba(255, 255, 255, 0.4);
border-radius: 6px;
overflow: hidden;
}
.bar-fill
{
height: 100%;
transition: width 0.1s ease-out;
}
.fill-bar
{
background-color: #4caf50;
}
.pour-bar
{
background-color: #4fa8e0;
}
}