_breadcrumbs.scss 501 B

1234567891011121314151617181920212223242526272829303132333435
  1. .breadcrumb {
  2. color: $button-color;
  3. padding-left: 2rem;
  4. a {
  5. color: inherit;
  6. &:hover {
  7. text-decoration: none;
  8. }
  9. }
  10. }
  11. .breadcrumb-item {
  12. + .breadcrumb-item::before,
  13. &::before {
  14. width: 10px;
  15. color: #eee;
  16. /* The arrow "U+0203A" (SINGLE RIGHT-POINTING ANGLE QUOTATION MARK) */
  17. content: "\203A";
  18. }
  19. + .breadcrumb-comment {
  20. padding-left: $breadcrumb-item-padding;
  21. }
  22. .icon {
  23. display: none;
  24. }
  25. }
  26. .breadcrumb-comment {
  27. font-style: italic;
  28. }