minireset.css 828 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*! minireset.css v0.0.2 | MIT License | github.com/jgthms/minireset.css */
  2. html,
  3. body,
  4. p,
  5. ol,
  6. ul,
  7. li,
  8. dl,
  9. dt,
  10. dd,
  11. blockquote,
  12. figure,
  13. fieldset,
  14. legend,
  15. textarea,
  16. pre,
  17. iframe,
  18. hr,
  19. h1,
  20. h2,
  21. h3,
  22. h4,
  23. h5,
  24. h6 {
  25. margin: 0;
  26. padding: 0;
  27. }
  28. h1,
  29. h2,
  30. h3,
  31. h4,
  32. h5,
  33. h6 {
  34. font-size: 100%;
  35. font-weight: normal;
  36. }
  37. ul {
  38. list-style: none;
  39. }
  40. button,
  41. input,
  42. select,
  43. textarea {
  44. margin: 0;
  45. }
  46. html {
  47. box-sizing: border-box;
  48. }
  49. * {
  50. box-sizing: inherit;
  51. }
  52. *:before,
  53. *:after {
  54. box-sizing: inherit;
  55. }
  56. img,
  57. embed,
  58. object,
  59. audio,
  60. video {
  61. height: auto;
  62. max-width: 100%;
  63. }
  64. iframe {
  65. border: 0;
  66. }
  67. table {
  68. border-collapse: collapse;
  69. border-spacing: 0;
  70. }
  71. td,
  72. th {
  73. padding: 0;
  74. text-align: left;
  75. }
  76. a,
  77. i {
  78. text-decoration: none;
  79. font-style: normal;
  80. display: block;
  81. }
  82. input {
  83. outline: none;
  84. }
  85. button {
  86. outline: none;
  87. }