Slight tweaks and JSON-LD
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful

This commit is contained in:
2026-02-16 11:00:51 -03:00
parent 6bef0f8254
commit 115d63768c
4 changed files with 113 additions and 0 deletions

View File

@@ -89,6 +89,42 @@ p {
padding-bottom: 2rem;
}
.breadcrumb {
list-style: none;
margin: 0 0 1rem;
padding: 0;
font-size: 0.9rem;
color: var(--text-muted);
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
}
.breadcrumb li {
display: inline-flex;
align-items: center;
}
.breadcrumb li:not(:last-child)::after {
content: '';
margin-left: 0.35rem;
color: var(--text-muted);
opacity: 0.8;
}
.breadcrumb a {
text-decoration: none;
}
.breadcrumb a:hover {
text-decoration: underline;
}
.breadcrumb [aria-current='page'] {
color: var(--text-main);
font-weight: 500;
}
.text-center {
text-align: center;
}