Lightweight CSS Framework for Building Apps and Websites https://crispy-css.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.

37 lines
586 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. /**
  2. * list
  3. *
  4. * styles and mixins for ul-element
  5. *
  6. *
  7. * @author Björn Hase
  8. *
  9. */
  10. @mixin crispy-boilerplate-list {
  11. .list {
  12. list-style-position: outside;
  13. &--horizontal {
  14. .list__item {
  15. float: left;
  16. }
  17. }
  18. &--clear {
  19. @include crispy-boilerplate-ist-clear();
  20. }
  21. }
  22. .d-list {
  23. &--horizontal {
  24. .d-list__title, .d-list__content {
  25. float: left;
  26. }
  27. .d-list__content {
  28. clear: left;
  29. }
  30. }
  31. }
  32. }