Le blog de Victor Héry https://blog.victor-hery.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
431 B

  1. //
  2. // Breadcrumbs
  3. // --------------------------------------------------
  4. .breadcrumb {
  5. padding: 8px 15px;
  6. margin: 0 0 @baseLineHeight;
  7. list-style: none;
  8. background-color: #f5f5f5;
  9. .border-radius(@baseBorderRadius);
  10. > li {
  11. display: inline-block;
  12. .ie7-inline-block();
  13. text-shadow: 0 1px 0 @white;
  14. > .divider {
  15. padding: 0 5px;
  16. color: #ccc;
  17. }
  18. }
  19. > .active {
  20. color: @grayLight;
  21. }
  22. }