page.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. }
  6. blockquote,
  7. body,
  8. button,
  9. dd,
  10. dl,
  11. dt,
  12. fieldset,
  13. form,
  14. h1,
  15. h2,
  16. h3,
  17. h4,
  18. h5,
  19. h6,
  20. hr,
  21. input,
  22. legend,
  23. li,
  24. ol,
  25. p,
  26. pre,
  27. td,
  28. textarea,
  29. th,
  30. ul {
  31. margin: 0;
  32. padding: 0;
  33. }
  34. body,
  35. button,
  36. input,
  37. select,
  38. textarea {
  39. font: 12px/1.5 tahoma, arial, sans-serif;
  40. }
  41. h1,
  42. h2,
  43. h3,
  44. h4,
  45. h5,
  46. h6 {
  47. font-size: 100%;
  48. }
  49. address,
  50. cite,
  51. dfn,
  52. em,
  53. var {
  54. font-style: normal;
  55. }
  56. code,
  57. kbd,
  58. pre,
  59. samp {
  60. font-family: courier new, courier, monospace;
  61. }
  62. small {
  63. font-size: 12px;
  64. }
  65. ol,
  66. ul {
  67. list-style: none;
  68. }
  69. a {
  70. text-decoration: none;
  71. }
  72. a:hover {
  73. text-decoration: underline;
  74. }
  75. legend {
  76. color: #000;
  77. }
  78. fieldset,
  79. img {
  80. border: 0;
  81. }
  82. button,
  83. input,
  84. select,
  85. textarea {
  86. font-size: 100%;
  87. }
  88. table {
  89. border-collapse: collapse;
  90. border-spacing: 0;
  91. }
  92. .main {
  93. padding: 30px 100px;
  94. }
  95. .main h1 {
  96. font-size: 36px;
  97. color: #333;
  98. text-align: left;
  99. margin-bottom: 30px;
  100. border-bottom: 1px solid #eee;
  101. }
  102. .helps {
  103. margin-top: 40px;
  104. }
  105. .helps pre {
  106. padding: 20px;
  107. margin: 10px 0;
  108. border: solid 1px #e7e1cd;
  109. background-color: #fffdef;
  110. overflow: auto;
  111. }
  112. .iconfont-list {
  113. overflow: hidden;
  114. }
  115. .iconfont-list li {
  116. float: left;
  117. width: 100px;
  118. height: 150px;
  119. text-align: center;
  120. }
  121. .iconfont-list .icon {
  122. font-size: 42px;
  123. line-height: 100px;
  124. margin: 10px 0;
  125. color: #333;
  126. font-style: normal;
  127. -webkit-transition: font-size 0.25s ease-out 0s;
  128. -moz-transition: font-size 0.25s ease-out 0s;
  129. transition: font-size 0.25s ease-out 0s;
  130. }
  131. .iconfont-list .icon:hover {
  132. font-size: 100px;
  133. }
  134. .iconfont-list .code {
  135. color: green;
  136. font-weight: bold;
  137. }