add breadcrumb module

This commit is contained in:
2018-06-05 09:45:02 +02:00
parent a6496884e1
commit 514b619f8a
3 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
require("./layout.scss");

View File

@@ -0,0 +1,21 @@
nav.chill-breadcrumb {
ul.list.on-left {
li {
border-right: 10px solid var(--chill-red);
}
li.active {
border-right: 10px solid var(--chill-green);
}
li.past {
border-right: 10px solid var(--chill-blue);
}
li.no-jump{
border-right: 10px solid var(--chill-light-gray);
background-color: var(--chill-yellow);
padding: 0.3em 0.3em 0.3em 0.6em;
color: var(--chill-dark-gray);
}
}
}