reset.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /**
  2. * Reset ==============================================================
  3. * Based on http://meyerweb.com/eric/tools/css/reset
  4. */
  5. html,
  6. body,
  7. div,
  8. span,
  9. applet,
  10. object,
  11. iframe,
  12. h1,
  13. h2,
  14. h3,
  15. h4,
  16. h5,
  17. h6,
  18. p,
  19. blockquote,
  20. pre,
  21. a,
  22. abbr,
  23. acronym,
  24. address,
  25. big,
  26. cite,
  27. code,
  28. del,
  29. dfn,
  30. em,
  31. font,
  32. img,
  33. ins,
  34. kbd,
  35. q,
  36. s,
  37. samp,
  38. small,
  39. strike,
  40. strong,
  41. sub,
  42. sup,
  43. tt,
  44. var,
  45. b,
  46. u,
  47. i,
  48. center,
  49. dl,
  50. dt,
  51. dd,
  52. ol,
  53. ul,
  54. li,
  55. fieldset,
  56. form,
  57. input,
  58. select,
  59. textarea,
  60. label,
  61. legend,
  62. table,
  63. caption,
  64. tbody,
  65. tfoot,
  66. thead,
  67. tr,
  68. th,
  69. td {
  70. margin:0px;
  71. padding:0px;
  72. border:0px;
  73. outline:0px;
  74. font-size:100%;
  75. vertical-align:baseline;
  76. background:transparent;
  77. line-height:inherit;
  78. }
  79. ol,
  80. ul,
  81. ul,
  82. ul li { list-style:none; }
  83. blockquote,
  84. q { quotes:none; }
  85. blockquote:before,
  86. blockquote:after,
  87. q:before,
  88. q:after {
  89. content:'';
  90. content:none;
  91. }
  92. /* remember to define focus styles! */
  93. :focus { outline:0px; }
  94. /* remember to highlight inserts somehow! */
  95. ins { text-decoration:none; }
  96. del { text-decoration:line-through; }
  97. /* tables still need 'cellspacing="0"' in the markup */
  98. table {
  99. border-collapse:collapse;
  100. border-spacing:0px;
  101. }
  102. /**
  103. * Font reset =========================================================
  104. *
  105. * Specifically targets form elements which browsers oftentimes give
  106. * special treatment.
  107. */
  108. input,
  109. select,
  110. textarea,
  111. body { font: 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; }