Séparation du footer en CSS à la place de HTML.
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@@ -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 d’un caractère */
|
||||||
|
|
||||||
|
background-image: linear-gradient(
|
||||||
|
to bottom,
|
||||||
|
transparent 49.99%,
|
||||||
|
$fg 49.99% 57.13%,
|
||||||
|
transparent 57.13%
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Prompt and command line.
|
// Prompt and command line.
|
||||||
// ========================
|
// ========================
|
||||||
.cmdblock {
|
.cmdblock {
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
<hr />
|
|
||||||
|
|
||||||
{{ with .GitInfo }}
|
{{ with .GitInfo }}
|
||||||
<p><small>Dernière modification commit {{ .AuthorDate }} - {{ .Hash }} - {{ .AuthorName }} <{{ replace .AuthorEmail "@" " at " }}></small></p>
|
<p><small>Dernière modification commit {{ .AuthorDate }} - {{ .Hash }} - {{ .AuthorName }} <{{ replace .AuthorEmail "@" " at " }}></small></p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|||||||
Reference in New Issue
Block a user