Séparation des articles.

This commit is contained in:
2026-03-19 00:56:15 +01:00
parent d40c62be38
commit 306837b460
+24
View File
@@ -134,6 +134,30 @@ h2::after {
);
}
// Séparation des articles.
article:not(:last-of-type) {
margin: 0;
padding-bottom: 1em;
position: relative;
}
article:not(:last-of-type)::after {
content: "";
position: absolute;
left: 0;
bottom: 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 {