_breadcrumb.scss 857 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .breadcrumb {
  2. margin: 1.5rem 1rem 0 1rem;
  3. padding-bottom: 1.5rem;
  4. @include truncate($grid-body-width);
  5. @include themify($themes) {
  6. border-bottom: 1px solid themed('hr-color');
  7. background-color: themed('breadcrumb-background-color');
  8. }
  9. ol {
  10. @include flexbox();
  11. @include align-items(center);
  12. }
  13. li {
  14. display: inline;
  15. font-size: 0.9rem;
  16. a {
  17. @include themify($themes) {
  18. color: themed('breadcrumb-item-color');
  19. @include on-event {
  20. color: themed('link-hover');
  21. }
  22. }
  23. }
  24. &:last-child {
  25. @include themify($themes) {
  26. color: themed('breadcrumb-item-active-color');
  27. }
  28. }
  29. }
  30. li+li:before {
  31. padding: 0.5rem;
  32. content: "»";
  33. @include themify($themes) {
  34. color: themed('breadcrumb-item-color');
  35. }
  36. }
  37. }