breadcrumbs.less 430 B

1234567891011121314151617181920212223242526272829303132
  1. // Breadcrumbs
  2. // -------------------------
  3. // Footer
  4. // -------------------------
  5. footer {
  6. .breadcrumb {
  7. background: none;
  8. border: none;
  9. margin: 0px;
  10. padding: 0px;
  11. font-weight: bold;
  12. text-shadow: none;
  13. li {
  14. text-shadow: none;
  15. a:link, a:active, a:visited, a:hover {
  16. color: @textColor;
  17. }
  18. .divider {
  19. color: @grayLight;
  20. }
  21. &.active {
  22. color: @gray;
  23. }
  24. }
  25. }
  26. }