_generic.reset.scss 741 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* ==========================================================================
  2. #RESET
  3. ========================================================================== */
  4. /**
  5. * A very simple reset that sits on top of Normalize.css.
  6. */
  7. body,
  8. h1, h2, h3, h4, h5, h6,
  9. blockquote, p, pre,
  10. dl, dd, ol, ul,
  11. figure,
  12. hr,
  13. fieldset, legend {
  14. margin: 0;
  15. padding: 0;
  16. }
  17. /**
  18. * Remove trailing margins from nested lists.
  19. */
  20. li > {
  21. ol,
  22. ul {
  23. margin-bottom: 0;
  24. }
  25. }
  26. /**
  27. * Remove default table spacing.
  28. */
  29. table {
  30. border-collapse: collapse;
  31. border-spacing: 0;
  32. }
  33. /**
  34. * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
  35. * on fieldsets.
  36. */
  37. fieldset {
  38. min-width: 0; /* [1] */
  39. border: 0;
  40. }