reset.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{margin:0;padding:0;}
  2. header,footer,section,article,aside,nav,hgroup,address,figure,figcaption,menu,details{display:block;}
  3. table{border-collapse:collapse;border-spacing:0;}
  4. caption,th{text-align:left;font-weight:normal;}
  5. html,body,fieldset,img,iframe,abbr{border:0;}
  6. i,cite,em,var,address,dfn{font-style:normal;}
  7. [hidefocus],summary{outline:0;}
  8. li{list-style:none;}
  9. h1,h2,h3,h4,h5,h6,small{font-size:100%;}
  10. sup,sub{font-size:83%;}
  11. pre,code,kbd,samp{font-family:inherit;}
  12. q:before,q:after{content:none;}
  13. textarea{overflow:auto;resize:none;}
  14. label,summary{cursor:default;}
  15. a,button{cursor:pointer;}
  16. h1,h2,h3,h4,h5,h6,em,strong,b{font-weight:bold;}
  17. del,ins,u,s,a,a:hover{text-decoration:none;}
  18. body,textarea,input,button,select,keygen,legend{font:16px/1.14 'Microsoft YaHei',\5b8b\4f53;color:#333;outline:0;}
  19. body{background:#fff;}
  20. a,a:hover{color:#fff;}
  21. *{box-sizing: border-box}
  22. .button {
  23. display: inline-block;
  24. background-color: #00b4ed;
  25. padding: 12px 30px;
  26. border-radius: 5px;
  27. font-size: 14px;
  28. -webkit-transition: background-color .3s linear;
  29. transition: background-color .3s linear;
  30. }
  31. .button:hover {
  32. background-color: #31cdff;
  33. }
  34. *{
  35. -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  36. }
  37. ::-webkit-scrollbar-track-piece {
  38. background-color:#ffffff;
  39. }
  40. ::-webkit-scrollbar {
  41. width:8px;
  42. height:13px;
  43. }
  44. ::-webkit-scrollbar-thumb {
  45. background-color:#e5e5e5;
  46. background-clip:padding-box;
  47. min-height:20px;
  48. border-radius: 3px;
  49. }
  50. ::-webkit-scrollbar-thumb:hover {
  51. background-color:#929292;
  52. }