base.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /* ---- HTML5 Reset ---- */
  2. a,
  3. abbr,
  4. address,
  5. article,
  6. aside,
  7. audio,
  8. b,
  9. blockquote,
  10. body,
  11. caption,
  12. cite,
  13. code,
  14. dd,
  15. del,
  16. dfn,
  17. dialog,
  18. div,
  19. dl,
  20. dt,
  21. em,
  22. fieldset,
  23. figure,
  24. footer,
  25. form,
  26. h1,
  27. h2,
  28. h3,
  29. h4,
  30. h5,
  31. h6,
  32. header,
  33. hgroup,
  34. hr,
  35. html,
  36. i,
  37. iframe,
  38. img,
  39. ins,
  40. kbd,
  41. label,
  42. legend,
  43. li,
  44. mark,
  45. menu,
  46. nav,
  47. object,
  48. ol,
  49. p,
  50. pre,
  51. q,
  52. samp,
  53. section,
  54. small,
  55. span,
  56. strong,
  57. sub,
  58. sup,
  59. table,
  60. tbody,
  61. td,
  62. tfoot,
  63. th,
  64. thead,
  65. time,
  66. tr,
  67. ul,
  68. var,
  69. video {
  70. border: 0;
  71. margin: 0;
  72. outline: 0;
  73. padding: 0;
  74. font-size: 100%;}
  75. a{
  76. color: #fff;
  77. text-decoration: none;
  78. -webkit-tap-highlight-color: rgba(0,0,0,0);}
  79. a:hover{
  80. opacity: 1;}
  81. html {
  82. height: 100%;
  83. font-size: 100%;
  84. -webkit-text-size-adjust: 100%;
  85. -ms-text-size-adjust: 100%;}
  86. body {
  87. margin: 0;
  88. padding: 0;
  89. width: 100%;
  90. height: 100%;
  91. min-height: 100%;
  92. overflow: hidden;
  93. -webkit-touch-callout: none;
  94. -webkit-tap-highlight-color: rgba(0,0,0,0);
  95. font-family: Helvetica, Arial, sans-serif;
  96. font-size: 13px;
  97. line-height: 1.231;}
  98. b,
  99. strong {
  100. font-weight: bold;}
  101. img {
  102. border: 0;
  103. -ms-interpolation-mode: bicubic;
  104. vertical-align: middle;
  105. font-size: 0;}
  106. table {
  107. border-collapse: collapse;
  108. border-spacing: 0;}
  109. th,
  110. td,
  111. caption {
  112. font-weight: normal;
  113. vertical-align: top;
  114. text-align: left;}
  115. * {
  116. margin: 0;
  117. padding: 0;}