2023-06-01 23:12:55 +01:00
|
|
|
#game-container {
|
2024-02-16 22:49:06 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2024-02-16 22:49:06 +01:00
|
|
|
.pdf,
|
|
|
|
.player,
|
|
|
|
.projectile {
|
|
|
|
position: absolute;
|
2023-06-01 23:12:55 +01:00
|
|
|
}
|
|
|
|
.pdf {
|
2024-02-16 22:49:06 +01:00
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
2023-06-01 23:12:55 +01:00
|
|
|
}
|
|
|
|
.player {
|
2024-02-16 22:49:06 +01:00
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
2023-06-01 23:12:55 +01:00
|
|
|
}
|
|
|
|
.projectile {
|
2024-02-16 22:49:06 +01:00
|
|
|
background-color: black !important;
|
|
|
|
width: 5px;
|
|
|
|
height: 10px;
|
2023-06-01 23:12:55 +01:00
|
|
|
}
|
2024-02-16 22:49:06 +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 {
|
2024-02-16 22:49:06 +01:00
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
2023-06-01 23:12:55 +01:00
|
|
|
}
|
|
|
|
#lives {
|
2024-02-16 22:49:06 +01:00
|
|
|
top: 10px;
|
|
|
|
left: calc(7vw); /* Adjusted position */
|
2023-06-01 23:12:55 +01:00
|
|
|
}
|
|
|
|
#high-score {
|
2024-02-16 22:49:06 +01:00
|
|
|
top: 10px;
|
|
|
|
left: calc(14vw); /* Adjusted position */
|
2023-06-01 23:12:55 +01:00
|
|
|
}
|
|
|
|
#level {
|
2024-02-16 22:49:06 +01:00
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
}
|