index.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. @import "mixin";
  2. @import "variables";
  3. @import "toolModule/index";
  4. // 总体body
  5. body {
  6. height: 100%;
  7. // -webkit-user-select:none;
  8. -moz-osx-font-smoothing: grayscale;
  9. -webkit-font-smoothing: antialiased;
  10. text-rendering: optimizeLegibility;
  11. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  12. color: $fontColor;
  13. font-size: 14px;
  14. }
  15. label {
  16. font-weight: 700;
  17. }
  18. html {
  19. height: 100%;
  20. box-sizing: border-box;
  21. -webkit-font-smoothing:antialiased;
  22. font-size: 16px;
  23. }
  24. #app {
  25. height: 100%;
  26. min-height: 100%;
  27. }
  28. body,
  29. h1,
  30. h2,
  31. h3,
  32. h4,
  33. h5,
  34. h6,
  35. p,
  36. ul,
  37. ol,
  38. dl{
  39. /*We will be adding our own margin to these elements as needed.*/
  40. margin: 0;
  41. /*You'll want to set font-size as needed.*/
  42. //font-size: 1rem;
  43. /*No bold for h tags unless you want it*/
  44. font-weight: 400;
  45. padding: 0;
  46. }
  47. ul,
  48. ol {
  49. list-style: none;
  50. }
  51. button {
  52. border: 0;
  53. outline:none;
  54. }
  55. input,
  56. fieldset {
  57. appearance: none;
  58. border: 0;
  59. padding: 0;
  60. margin: 0;
  61. /*inputs and fieldset defaults to having a min-width equal to its content in Chrome and Firefox (https://code.google.com/p/chromium/issues/detail?id=560762), we may not want that*/
  62. min-width: 0;
  63. /*Reset the font size and family*/
  64. font-size: 1rem;
  65. font-family: inherit;
  66. }
  67. /* Switching user-select on for inputs and contenteditable specifically for Safari (see bug link above)*/
  68. input[type],
  69. [contenteditable] {
  70. user-select: text;
  71. }
  72. /* For IE, we want to remove the default cross ('X') that appears in input fields when a user starts typing - Make sure you add your own! */
  73. input::-ms-clear {
  74. display: none;
  75. }
  76. /*This switches the default outline off when an input receives focus (really important for users tabbing through with a keyboard) so ensure you put something decent in for your input focus instead!!*/
  77. input:focus {
  78. outline: 0;
  79. }
  80. input[type="number"] {
  81. /*Mozilla shows the spinner UI on number inputs unless we use this:*/
  82. -moz-appearance: textfield;
  83. }
  84. /*Removes the little spinner controls for number type inputs (WebKit browsers/forks only)*/
  85. input[type="number"]::-webkit-inner-spin-button,
  86. input[type="number"]::-webkit-outer-spin-button {
  87. appearance: none;
  88. }
  89. .clearfix:after {
  90. content: ".";
  91. display: block;
  92. height: 0;
  93. clear: both;
  94. visibility: hidden
  95. }
  96. *,
  97. *:before,
  98. *:after {
  99. box-sizing: inherit;
  100. }
  101. .no-padding {
  102. padding: 0px !important;
  103. }
  104. a:focus,
  105. a:active {
  106. outline: none;
  107. }
  108. a,
  109. a:focus,
  110. a:hover {
  111. cursor: pointer;
  112. color: inherit;
  113. text-decoration: none;
  114. }
  115. div:focus {
  116. outline: none;
  117. }
  118. .w100{width: 100%;}
  119. // 盒子
  120. .box-container {
  121. padding: 15px;
  122. }
  123. // 边框1px
  124. @media (-webkit-device-pixel-ratio: 2) {
  125. .border-1px:after{
  126. height: 1px;
  127. content: '';
  128. width: 100%;
  129. border-bottom: 1px solid #e1e1e1;
  130. position: absolute;
  131. bottom: -1px;
  132. right: 0;
  133. transform: scaleY(0.5);
  134. -webkit-transform: scaleY(0.5);
  135. }
  136. }
  137. @media (-webkit-min-device-pixel-ratio: 2){
  138. .border-bottom::after {
  139. border-bottom-width: 1px;
  140. }
  141. .border-1px:after {
  142. content: ' ';
  143. display: block;
  144. position: absolute;
  145. top: 0;
  146. right: -100%;
  147. bottom: -100%;
  148. left: 0;
  149. border: 0 solid #e1e1e1;
  150. -webkit-transform-origin: 0 0;
  151. transform-origin: 0 0;
  152. pointer-events: none;
  153. -webkit-transform: scale(.5);
  154. transform: scale(.5);
  155. width: 200%;
  156. -webkit-box-sizing: border-box;
  157. box-sizing: border-box;
  158. }
  159. }