base.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. html, body, div, span, applet, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. a, abbr, acronym, address, big, cite, code,
  4. del, dfn, em, img, ins, kbd, q, s, samp,
  5. small, strike, strong, sub, sup, tt, var,
  6. b, u, i, center,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td,
  10. article, aside, canvas, details, embed,
  11. figure, figcaption, footer, header,
  12. menu, nav, output, ruby, section, summary,
  13. time, mark, audio, video, input {
  14. margin: 0;
  15. padding: 0;
  16. border: 0;
  17. font-size: 100%;
  18. font-weight: normal;
  19. vertical-align: baseline;
  20. box-sizing: border-box;
  21. }
  22. /* HTML5 display-role reset for older browsers */
  23. article, aside, details, figcaption, figure,
  24. footer, header, menu, nav, section {
  25. display: block;
  26. }
  27. body {
  28. line-height: 1;
  29. }
  30. blockquote, q {
  31. quotes: none;
  32. }
  33. blockquote:before, blockquote:after,
  34. q:before, q:after {
  35. content: none;
  36. }
  37. table {
  38. border-collapse: collapse;
  39. border-spacing: 0;
  40. }
  41. /* custom */
  42. a {
  43. color: #7e8c8d;
  44. text-decoration: none;
  45. -webkit-backface-visibility: hidden;
  46. }
  47. li {
  48. list-style: none;
  49. }
  50. ::-webkit-scrollbar {
  51. width: 5px;
  52. height: 5px;
  53. }
  54. ::-webkit-scrollbar-track-piece {
  55. background-color: rgba(0, 0, 0, 0.2);
  56. -webkit-border-radius: 6px;
  57. }
  58. ::-webkit-scrollbar-thumb:vertical {
  59. height: 5px;
  60. background-color: rgba(125, 125, 125, 0.7);
  61. -webkit-border-radius: 6px;
  62. }
  63. ::-webkit-scrollbar-thumb:horizontal {
  64. width: 5px;
  65. background-color: rgba(125, 125, 125, 0.7);
  66. -webkit-border-radius: 6px;
  67. }
  68. html, body {
  69. width: 100%;
  70. }
  71. body {
  72. -webkit-text-size-adjust: none;
  73. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  74. }
  75. input::-webkit-input-placeholder{
  76. color:#ccc;
  77. font-size: 12px;
  78. }
  79. input::-moz-placeholder{ /* Mozilla Firefox 19+ */
  80. color:#ccc;
  81. font-size: 12px;
  82. }
  83. input:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
  84. color:#ccc;
  85. font-size: 12px;
  86. }
  87. input:-ms-input-placeholder{ /* Internet Explorer 10-11 */
  88. color:#ccc;
  89. font-size: 12px;
  90. }
  91. .van-dialog__header{
  92. color: #858B6B;
  93. font-size: 12px;
  94. }
  95. .van-dialog__message--has-title{
  96. color: #858B6B;
  97. font-size: 12px;
  98. }
  99. .van-button--default{
  100. color: #858B6B;
  101. font-size: 12px;
  102. }
  103. .van-dialog__confirm, .van-dialog__confirm:active{
  104. color: black;
  105. font-size: 12px;
  106. }