hugo-theme-termlite/assets/css/099_breadcrumb.css

40 lines
533 B
CSS
Raw Normal View History

2024-07-06 11:02:53 -07:00
{{/*
099_breadcrumb.css
Eryn Wells <eryn@erynwells.me>
vim: set sw=2 sts=2:
*/}}
/*************
# BREADCRUMB
*************/
.nav-breadcrumb {
2024-07-06 11:02:53 -07:00
--item-spacing: var(--space-xxs);
font-size: var(--text-s);
ul, ol {
display: flex;
2024-07-06 11:02:53 -07:00
margin-block: 0;
padding-inline: 0;
}
li {
list-style-type: none;
}
li:not(:first-child) {
2024-07-06 11:02:53 -07:00
margin-inline-start: var(--item-spacing);
&::before {
2024-07-06 11:02:53 -07:00
color: var(--gray5);
content: "/";
margin-inline-end: var(--item-spacing);
}
}
}