breadcrumb.css 501 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * @file
  3. * Breadcrumbs.
  4. */
  5. .breadcrumb {
  6. line-height: 1.8;
  7. padding: 20px 0;
  8. }
  9. .breadcrumb ol {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. [dir="rtl"] .breadcrumb ol {
  14. /* This is required to win over specificity of [dir="rtl"] ol */
  15. margin-right: 0;
  16. }
  17. .breadcrumb li {
  18. display: inline;
  19. list-style-type: none;
  20. padding: 0;
  21. }
  22. /* IE8 does not support :not() and :last-child. */
  23. .breadcrumb li:before {
  24. content: ' \BB ';
  25. color: #0678be;
  26. }
  27. .breadcrumb li:first-child:before {
  28. content: none;
  29. }