reset.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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:12px/1.14 'Microsoft YaHei',\5b8b\4f53;outline:0;}
  19. *{box-sizing: border-box}
  20. body {
  21. --primary-color: #151b2b;
  22. --text-color: #fff;
  23. --sub-text-color:#01d4ea;
  24. }
  25. ::-webkit-scrollbar
  26. {
  27. width: 6px;
  28. height: 6px;
  29. display: none;
  30. }
  31. ::-webkit-scrollbar-track-piece
  32. {
  33. background-color: #fff;
  34. -webkit-border-radius: 6px;
  35. }
  36. ::-webkit-scrollbar-thumb:vertical
  37. {
  38. height: 5px;
  39. background-color: #eac1a3;
  40. -webkit-border-radius: 6px;
  41. }
  42. ::-webkit-scrollbar-thumb:horizontal
  43. {
  44. width: 5px;
  45. background-color: #eac1a3;
  46. -webkit-border-radius: 6px;
  47. }