minireset.sass 709 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
  2. // Blocks
  3. html,
  4. body,
  5. p,
  6. ol,
  7. ul,
  8. li,
  9. dl,
  10. dt,
  11. dd,
  12. blockquote,
  13. figure,
  14. fieldset,
  15. legend,
  16. textarea,
  17. pre,
  18. iframe,
  19. hr,
  20. h1,
  21. h2,
  22. h3,
  23. h4,
  24. h5,
  25. h6
  26. margin: 0
  27. padding: 0
  28. // Headings
  29. h1,
  30. h2,
  31. h3,
  32. h4,
  33. h5,
  34. h6
  35. font-size: 100%
  36. font-weight: normal
  37. // List
  38. ul
  39. list-style: none
  40. // Form
  41. button,
  42. input,
  43. select,
  44. textarea
  45. margin: 0
  46. // Box sizing
  47. html
  48. box-sizing: border-box
  49. *
  50. &,
  51. &::before,
  52. &::after
  53. box-sizing: inherit
  54. // Media
  55. img,
  56. video
  57. height: auto
  58. max-width: 100%
  59. // Iframe
  60. iframe
  61. border: 0
  62. // Table
  63. table
  64. border-collapse: collapse
  65. border-spacing: 0
  66. td,
  67. th
  68. padding: 0
  69. &:not([align])
  70. text-align: inherit