Public Access
5
0

Fix du footer dans les sous pages du lore

This commit is contained in:
Jeremy
2025-11-22 14:42:00 -05:00
parent 31f12c8278
commit 05be9f8b22

View File

@@ -9,8 +9,10 @@
box-sizing: border-box; box-sizing: border-box;
} }
main { body {
min-height: 85vh; min-height: 100vh; /* Pour footer at bottom from : https://douiri.org/blog/fix-footer-bottom-css/ */
display: grid;
grid-template-rows: auto 1fr auto; /* SEE: https://www.geeksforgeeks.org/css/css-grid-layout-the-fr-unit/ */
} }
nav { nav {
@@ -103,6 +105,7 @@ footer {
/* PAGE: Univers Sci-fi et sous-pages */ /* PAGE: Univers Sci-fi et sous-pages */
/* AUTEUR: Léa */ /* AUTEUR: Léa */
/**************************************/ /**************************************/
.lore { .lore {
background: #13172c url("../images/ImagesLea/warframeLore.jpg") no-repeat center; background: #13172c url("../images/ImagesLea/warframeLore.jpg") no-repeat center;
background-size: cover; background-size: cover;
@@ -119,7 +122,7 @@ footer {
margin: 10px; margin: 10px;
} }
.lore p, blockquote{ .lore article p, blockquote{
margin-left: 10px; margin-left: 10px;
margin-top: 15px; margin-top: 15px;
} }