@charset "UTF-8"; @if $use-breadcrumb == true{ /*------------------------------------*\ $BREADCRUMB \*------------------------------------*/ /** * Simple breadcrumb styling to apply to (ordered) lists. Extends `.nav`, e.g.: *
* * Demo: jsfiddle.net/inuitcss/rkAY9 * */ .breadcrumb > li + li:before{ content:"\00BB" "\00A0"; } /** * For denoting a path-like structure, GitHub style, e.g.: * * */ .breadcrumb--path > li + li:before{ content:"\002F" "\00A0"; } /** * Assign a delimiter on the fly through a data attribute, e.g.: * * */ .breadcrumb > li + li[data-breadcrumb]:before{ content:attr(data-breadcrumb) "\00A0"; } /** * Denote the root of the tree. */ .breadcrumb__root{ font-weight:bold; } }//endif