55 lines
831 B
CSS
Raw Normal View History

2023-06-01 23:12:55 +01:00
#game-container {
position: relative;
width: 100vh;
height: 0;
padding-bottom: 75%; /* 4:3 aspect ratio */
background-color: transparent;
margin: auto;
overflow: hidden;
border: 2px solid black; /* Add border */
2023-06-01 23:12:55 +01:00
}
.pdf,
.player,
.projectile {
position: absolute;
2023-06-01 23:12:55 +01:00
}
.pdf {
width: 50px;
height: 50px;
2023-06-01 23:12:55 +01:00
}
.player {
width: 50px;
height: 50px;
2023-06-01 23:12:55 +01:00
}
.projectile {
background-color: black !important;
width: 5px;
height: 10px;
2023-06-01 23:12:55 +01:00
}
#score,
#level,
#lives,
#high-score {
color: black;
font-family: sans-serif;
position: absolute;
font-size: calc(14px + 0.25vw); /* Reduced font size */
2023-06-01 23:12:55 +01:00
}
#score {
top: 10px;
left: 10px;
2023-06-01 23:12:55 +01:00
}
#lives {
top: 10px;
left: calc(7vw); /* Adjusted position */
2023-06-01 23:12:55 +01:00
}
#high-score {
top: 10px;
left: calc(14vw); /* Adjusted position */
2023-06-01 23:12:55 +01:00
}
#level {
top: 10px;
right: 10px;
}