flexible.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. *,
  2. ::after,
  3. ::before {
  4. -webkit-box-sizing: inherit;
  5. box-sizing: inherit;
  6. -webkit-tap-highlight-color: transparent
  7. }
  8. html {
  9. -webkit-box-sizing: border-box;
  10. box-sizing: border-box;
  11. color: #333;
  12. font-family: 'Helvetica Neue', Tahoma, Arial, PingFangSC-Regular, 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  13. line-height: 1.2;
  14. -webkit-user-select: none;
  15. -moz-user-select: none;
  16. -ms-user-select: none;
  17. user-select: none;
  18. -webkit-font-smoothing: antialiased;
  19. -ms-touch-action: manipulation;
  20. touch-action: manipulation;
  21. -webkit-text-size-adjust: none;
  22. -moz-text-size-adjust: none;
  23. -ms-text-size-adjust: none;
  24. text-size-adjust: none;
  25. }
  26. body,
  27. button,
  28. dd,
  29. dl,
  30. ol,
  31. ul {
  32. margin: 0;
  33. padding: 0
  34. }
  35. ol,
  36. ul {
  37. list-style: none
  38. }
  39. a {
  40. outline: 0;
  41. color: inherit;
  42. text-decoration: none
  43. }
  44. a,
  45. img {
  46. -webkit-touch-callout: none
  47. }
  48. button,
  49. input,
  50. select,
  51. textarea {
  52. outline: 0;
  53. border: none;
  54. font-size: inherit;
  55. font-family: inherit
  56. }
  57. h1,
  58. h2,
  59. h3,
  60. h4,
  61. h5,
  62. h6,
  63. p {
  64. margin: 0;
  65. font-weight: 400
  66. }
  67. img {
  68. max-width: 100%
  69. }
  70. textarea {
  71. resize: none
  72. }
  73. select {
  74. background-color: transparent;
  75. -webkit-appearance: none;
  76. -moz-appearance: none;
  77. appearance: none
  78. }
  79. input[type=button],
  80. input[type=reset],
  81. input[type=submit] {
  82. -webkit-appearance: button;
  83. -moz-appearance: button;
  84. appearance: button
  85. }
  86. input:-webkit-autofill {
  87. -webkit-box-shadow: 0 0 0 100px #fff inset;
  88. box-shadow: 0 0 0 100px #fff inset
  89. }
  90. table {
  91. width: 100%;
  92. border-collapse: collapse;
  93. text-align: center;
  94. }
  95. .clearfix:before,
  96. .clearfix:after {
  97. content: '';
  98. display: block;
  99. width: 0;
  100. height: 0;
  101. visibility: hidden;
  102. clear: both;
  103. }
  104. ::-webkit-scrollbar {
  105. display: none
  106. }