hugo-theme-termlite/assets/css/099_breadcrumb.css
Eryn Wells a5e5d04b9f page_breadcrumb: Implement a breadcrumb and display it above the <main> content
The breadcrumb shows navigation from the home page as a path:

/ > Posts > This Post

en.yaml
2024-07-03 07:41:23 -07:00

30 lines
355 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*************
# BREADCRUMB
*************/
.nav-breadcrumb {
font-size: var(--text-s);
ul, ol {
display: flex;
padding-inline: 0;
}
li {
list-style-type: none;
}
li:not(:first-child) {
margin-inline-start: var(--space-xs);
&::before {
content: "";
margin-inline-end: var(--space-xs);
}
}
}