index.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @import './elementReset.scss'
  5. /*初始化 start*/
  6. body,
  7. div,
  8. dl,
  9. dt,
  10. dd,
  11. ul,
  12. ol,
  13. li,
  14. h1,
  15. h2,
  16. h3,
  17. h4,
  18. h5,
  19. h6,
  20. pre,
  21. code,
  22. form,
  23. fieldset,
  24. legend,
  25. input,
  26. select,
  27. button,
  28. textarea,
  29. p,
  30. blockquote,
  31. table,
  32. th,
  33. td {
  34. margin: 0;
  35. padding: 0;
  36. border: 0;
  37. }
  38. body {
  39. font-family: "微软雅黑",Verdana, Arial, Helvetica, sans-serif;
  40. -webkit-text-size-adjust: 100%;
  41. }
  42. td,
  43. th,
  44. caption {
  45. font-size: 14px;
  46. }
  47. h1,
  48. h2,
  49. h3,
  50. h4,
  51. h5,
  52. h6 {
  53. font-weight: normal;
  54. font-size: 100%;
  55. }
  56. address,
  57. caption,
  58. cite,
  59. code,
  60. dfn,
  61. em,
  62. strong,
  63. th,
  64. var,
  65. i {
  66. font-style: normal;
  67. font-weight: normal;
  68. }
  69. img {
  70. border: none;
  71. vertical-align: middle;
  72. }
  73. ol,
  74. ul,
  75. li {
  76. list-style: none;
  77. }
  78. input,
  79. textarea,
  80. select,
  81. button {
  82. font: 14px Verdana, Helvetica, Arial, sans-serif;
  83. outline: none;
  84. resize: none;
  85. }
  86. table {
  87. border-collapse: collapse;
  88. border-spacing: 0;
  89. }
  90. .clearfix:after {
  91. content: ".";
  92. display: block;
  93. height: 0;
  94. clear: both;
  95. visibility: hidden;
  96. }
  97. .clearfix {
  98. *zoom: 1;
  99. }
  100. /*初始化 end*/