breadcrumb.styl 305 B

123456789101112131415161718192021
  1. ul.breadcrumb {
  2. font-size: $font-size-smallest;
  3. list-style: none;
  4. margin: 1em 0;
  5. padding: 0 2em;
  6. text-align: center;
  7. li {
  8. display: inline;
  9. }
  10. li + li::before {
  11. content: '/\00a0';
  12. font-weight: normal;
  13. padding: .5em;
  14. }
  15. li + li:last-child {
  16. font-weight: bold;
  17. }
  18. }