7fd85de587f2b351013114faf6d8b87976ce5b73.svn-base 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. Copyright (c) 2009, Yahoo! Inc. All rights reserved.
  3. Code licensed under the BSD License:
  4. http://developer.yahoo.net/yui/license.txt
  5. version: 2.7.0
  6. */
  7. /**
  8. * YUI Reset
  9. * @module reset
  10. * @namespace
  11. * @requires
  12. */
  13. html,
  14. body,
  15. div,
  16. dl,
  17. dt,
  18. dd,
  19. ul,
  20. ol,
  21. li,
  22. h1,
  23. h2,
  24. h3,
  25. h4,
  26. h5,
  27. h6,
  28. pre,
  29. code,
  30. form,
  31. fieldset,
  32. legend,
  33. input,
  34. button,
  35. textarea,
  36. p,
  37. blockquote,
  38. th,
  39. td {
  40. margin: 0;
  41. padding: 0;
  42. }
  43. table {
  44. border-collapse: collapse;
  45. border-spacing: 0;
  46. }
  47. fieldset,
  48. img {
  49. border: 0;
  50. }
  51. address,
  52. caption,
  53. cite,
  54. code,
  55. dfn,
  56. em,
  57. strong,
  58. th,
  59. var,
  60. optgroup {
  61. font-style: inherit;
  62. font-weight: inherit;
  63. }
  64. del,
  65. ins {
  66. text-decoration: none;
  67. }
  68. li {
  69. list-style: none;
  70. }
  71. caption,
  72. th {
  73. text-align: left;
  74. }
  75. h1,
  76. h2,
  77. h3,
  78. h4,
  79. h5,
  80. h6 {
  81. font-size: 100%;
  82. font-weight: normal;
  83. }
  84. q:before,
  85. q:after {
  86. content: '';
  87. }
  88. abbr,
  89. acronym {
  90. border: 0;
  91. font-variant: normal;
  92. }
  93. sup {
  94. vertical-align: baseline;
  95. }
  96. sub {
  97. vertical-align: baseline;
  98. }
  99. /*because legend doesn't inherit in IE */
  100. legend {
  101. color: #000;
  102. }
  103. input,
  104. button,
  105. textarea,
  106. select,
  107. optgroup,
  108. option {
  109. font-family: inherit;
  110. font-size: inherit;
  111. font-style: inherit;
  112. font-weight: inherit;
  113. }
  114. /*@purpose To enable resizing for IE */
  115. /*@branch For IE6-Win, IE7-Win */
  116. input,
  117. button,
  118. textarea,
  119. select {
  120. *font-size: 100%;
  121. }