mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-06-13 01:57:28 -05:00
Add breadcrumb navigation
Disabled by default, and you probably want to keep it that way. It doesn't fit in very well with the design currently. I just found it in the Hugo docs and thought I might as well put it in for safe keeping.
This commit is contained in:
@ -46,3 +46,27 @@ blockquote {
|
||||
border-left: 5px solid #222;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
/* Breadcrumb Navigation */
|
||||
ul.breadcrumb {
|
||||
padding 10px 16px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
ul.breadcrumb li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
ul.breadcrumb li a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
ul.breadcrumb li+li:before {
|
||||
padding: 8px;
|
||||
content: "/\00a0";
|
||||
}
|
||||
|
||||
ul.breadcrumb li.active a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
Reference in New Issue
Block a user