Séparation du footer en CSS à la place de HTML.
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-03-19 00:57:34 +01:00
parent 306837b460
commit 5266992b28
2 changed files with 24 additions and 2 deletions
+24
View File
@@ -158,6 +158,30 @@ article:not(:last-of-type)::after {
);
}
// Séparation du pied de page
footer {
margin: 0;
padding-top: 1em;
position: relative;
}
footer::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 1em; /* ≈ hauteur dun caractère */
background-image: linear-gradient(
to bottom,
transparent 49.99%,
$fg 49.99% 57.13%,
transparent 57.13%
);
}
// Prompt and command line.
// ========================
.cmdblock {