Quelques mises a jour amusantes

This commit is contained in:
François Pelletier 2024-09-06 19:53:24 -04:00
parent bb95f8f8fd
commit 5d4ea4e85a
14 changed files with 294 additions and 73 deletions

View file

@ -3,3 +3,41 @@
padding: 20px;
font-family: Arial, sans-serif;
}
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #f2f2f2;
}
#gameContainer {
width: 540px;
margin: 0 auto;
text-align: center;
padding-top: 20px; /* Add some padding at the top */
}
#themeHeader {
margin: 0 0 10px 0; /* Add margin at the bottom */
padding: 10px 0;
background-color: #f0f0f0;
border-bottom: 1px solid #ccc;
font-family: Arial, sans-serif;
font-size: 18px;
color: #333;
}
#canvasContainer {
position: relative;
width: 540px;
height: 675px;
}
#gameCanvas {
display: block;
margin: 0 auto;
}