This commit is contained in:
nbillard 2022-12-12 16:03:43 +01:00
commit b8636a7e18
2 changed files with 46 additions and 0 deletions

View file

@ -48,6 +48,10 @@
</div> </div>
</main> </main>
<footer>
<p>Sokoban 2022</p>
<p>Pour une meilleure expérience, veuillez utiliser ce jeu sur un ordinateur avec un écran horizontal.</p>
</footer>
</body> </body>
<!-- <script type="module" src="./modules/ressources.mjs"></script> --> <!-- <script type="module" src="./modules/ressources.mjs"></script> -->

View file

@ -9,12 +9,54 @@ body {
color: --main-invert-color; color: --main-invert-color;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin: 0;
min-height: 100vh;
} }
main { main {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
margin: 1rem 0;
}
nav {
display: flex;
/*width: 100%; */
background-color: yellowgreen;
padding: 0 20%;
}
nav ol {
display: flex;
flex-direction: row;
align-items: center;
list-style-type: none;
}
nav ol li {
margin: auto 1rem;
}
nav ol li button {
background-color: transparent;
padding: 0.5rem;
font-size: large;
}
footer {
display: flex;
align-items: center;
flex-direction: column;
position:fixed;
width: 100%;
bottom: 0;
background-color: yellowgreen;
}
footer p:last-child {
font-weight: bolder;
} }
.text-bubble { .text-bubble {