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.

33 lines
503 B

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 cripsy-boilerplate-list {
  11. .list {
  12. list-style-position: outside;
  13. &--horizontal {
  14. .list__item {
  15. float: left;
  16. }
  17. }
  18. }
  19. .d-list {
  20. &--horizontal {
  21. .d-list__title, .d-list__content {
  22. float: left;
  23. }
  24. .d-list__content {
  25. clear: left;
  26. }
  27. }
  28. }
  29. }