_objects.list-bare.scss 508 B

1234567891011121314151617181920
  1. /* ==========================================================================
  2. #LIST-BARE
  3. ========================================================================== */
  4. /**
  5. * Strip list-like appearance from lists by removing their bullets and any
  6. * indentation.
  7. *
  8. * Note: Declaring the item class might not be necessary everywhere,
  9. * but is for example in <dl> lists for the <dd> children.
  10. */
  11. .o-list-bare {
  12. list-style: none;
  13. margin-left: 0;
  14. }
  15. .o-list-bare__item {
  16. margin-left: 0;
  17. }